Browse Source

[2379] style fix: folded a long line.

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

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

@@ -380,7 +380,8 @@ PyDataSourceClient_ToDataSourceClient(PyObject* client_obj) {
         isc_throw(PyCPPWrapperException,
                   "obj argument NULL in Name PyObject conversion");
     }
-    const s_DataSourceClient* client = static_cast<const s_DataSourceClient*>(client_obj);
+    const s_DataSourceClient* client =
+        static_cast<const s_DataSourceClient*>(client_obj);
     return (*client->client);
 }