]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s4:librpc: Remove trailing whitespace
authorJoseph Sutton <josephsutton@catalyst.net.nz>
Wed, 8 Nov 2023 08:09:14 +0000 (21:09 +1300)
committerAndrew Bartlett <abartlet@samba.org>
Thu, 16 Nov 2023 05:18:36 +0000 (05:18 +0000)
Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
source4/librpc/rpc/pyrpc_util.c

index 0d6a16518f1f375bcc13d5f3a18087274ab8b4e7..e36a176a37624c8001c6e765fbeee63be47edd71 100644 (file)
@@ -307,7 +307,7 @@ static PyObject *py_dcerpc_run_function(dcerpc_InterfaceObject *iface,
 }
 
 static PyObject *py_dcerpc_call_wrapper(PyObject *self, PyObject *args, void *wrapped, PyObject *kwargs)
-{      
+{
        dcerpc_InterfaceObject *iface = (dcerpc_InterfaceObject *)self;
        const struct PyNdrRpcMethodDef *md = (const struct PyNdrRpcMethodDef *)wrapped;
 
@@ -332,7 +332,7 @@ bool PyInterface_AddNdrRpcMethods(PyTypeObject *ifacetype, const struct PyNdrRpc
 
                ret = PyDescr_NewWrapper(ifacetype, wb, discard_const_p(void, &mds[i]));
 
-               PyDict_SetItemString(ifacetype->tp_dict, mds[i].name, 
+               PyDict_SetItemString(ifacetype->tp_dict, mds[i].name,
                                     (PyObject *)ret);
                Py_CLEAR(ret);
        }