summaryrefslogtreecommitdiff
path: root/source4/lib/registry/pyregistry.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-03-29 18:43:38 +0200
committerJelmer Vernooij <jelmer@samba.org>2010-03-29 18:44:00 +0200
commita5e6b5589b9d8498740a289dba2d56d3eb14af72 (patch)
tree54d75935707d260d1e886ce4a21e1bd884f6a7c7 /source4/lib/registry/pyregistry.c
parent38fc9dfdc6046e21cd8f0127e2cd88f72f81b3b3 (diff)
downloadsamba-a5e6b5589b9d8498740a289dba2d56d3eb14af72.tar.gz
samba-a5e6b5589b9d8498740a289dba2d56d3eb14af72.tar.bz2
samba-a5e6b5589b9d8498740a289dba2d56d3eb14af72.zip
registry: Fix compilation.
Diffstat (limited to 'source4/lib/registry/pyregistry.c')
-rw-r--r--source4/lib/registry/pyregistry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/registry/pyregistry.c b/source4/lib/registry/pyregistry.c
index d2302af6b9..d7295b573c 100644
--- a/source4/lib/registry/pyregistry.c
+++ b/source4/lib/registry/pyregistry.c
@@ -61,7 +61,7 @@ static PyObject *py_key_del_abs(PyObject *self, PyObject *args)
if (!PyArg_ParseTuple(args, "s", &path))
return NULL;
- result = reg_key_del_abs(NULL, ctx, path);
+ result = reg_key_del_abs(ctx, path);
PyErr_WERROR_IS_ERR_RAISE(result);
Py_RETURN_NONE;