1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

Removed unused arg to deleteform.

(This used to be commit 5071fd8fe0)
This commit is contained in:
Tim Potter 2002-05-06 04:52:45 +00:00
parent fe816061c1
commit 0a01e23e2b

View File

@ -162,14 +162,13 @@ PyObject *spoolss_deleteform(PyObject *self, PyObject *args, PyObject *kw)
{
spoolss_policy_hnd_object *hnd = (spoolss_policy_hnd_object *)self;
WERROR werror;
int level = 1;
static char *kwlist[] = {"form_name", "level", NULL};
char *form_name;
/* Parse parameters */
if (!PyArg_ParseTupleAndKeywords(
args, kw, "s|i", kwlist, &form_name, &level))
args, kw, "s", kwlist, &form_name))
return NULL;
/* Call rpc function */