Browse Source

[2542] style fix: position of '*'

JINMEI Tatuya 12 years ago
parent
commit
5d7e273a02
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/python/isc/datasrc/client_python.cc

+ 1 - 1
src/lib/python/isc/datasrc/client_python.cc

@@ -94,7 +94,7 @@ DataSourceClient_findZone(PyObject* po_self, PyObject* args) {
 PyObject*
 DataSourceClient_createZone(PyObject* po_self, PyObject* args) {
     s_DataSourceClient* const self = static_cast<s_DataSourceClient*>(po_self);
-    PyObject *name;
+    PyObject* name;
     if (PyArg_ParseTuple(args, "O!", &name_type, &name)) {
         try {
             const bool result = self->client->createZone(PyName_ToName(name));