Browse Source

fixed overkilling in the previous commit (skipping review)

git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@3075 e5f2f494-b856-4b98-b285-d166d9295462
JINMEI Tatuya 14 years ago
parent
commit
137b34f124
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/dns/python/opcode_python.cc

+ 1 - 1
src/lib/dns/python/opcode_python.cc

@@ -46,7 +46,7 @@ void Opcode_destroy(s_Opcode* const self);
 PyObject* Opcode_getCode(const s_Opcode* const self);
 PyObject* Opcode_getCode(const s_Opcode* const self);
 PyObject* Opcode_toText(const s_Opcode* const self);
 PyObject* Opcode_toText(const s_Opcode* const self);
 PyObject* Opcode_str(PyObject* self);
 PyObject* Opcode_str(PyObject* self);
-PyObject* Opcode_QUERY(const Opcode* self);
+PyObject* Opcode_QUERY(const s_Opcode* self);
 PyObject* Opcode_IQUERY(const s_Opcode* self);
 PyObject* Opcode_IQUERY(const s_Opcode* self);
 PyObject* Opcode_STATUS(const s_Opcode* self);
 PyObject* Opcode_STATUS(const s_Opcode* self);
 PyObject* Opcode_RESERVED3(const s_Opcode* self);
 PyObject* Opcode_RESERVED3(const s_Opcode* self);