From: Joseph Sutton Date: Wed, 8 Nov 2023 08:09:14 +0000 (+1300) Subject: s4:librpc: Remove trailing whitespace X-Git-Tag: talloc-2.4.2~655 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5f3f3c0cc3ef7ca5237ba1e4865259e02f41a12c;p=thirdparty%2Fsamba.git s4:librpc: Remove trailing whitespace Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- diff --git a/source4/librpc/rpc/pyrpc_util.c b/source4/librpc/rpc/pyrpc_util.c index 0d6a16518f1..e36a176a376 100644 --- a/source4/librpc/rpc/pyrpc_util.c +++ b/source4/librpc/rpc/pyrpc_util.c @@ -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); }