summaryrefslogtreecommitdiff
path: root/source3/python/py_spoolss_ports.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-04-03 04:47:44 +0000
committerTim Potter <tpot@samba.org>2002-04-03 04:47:44 +0000
commitc15c667afbc221944745ce2a14f138bcb0e9e1ed (patch)
treea076ad98c55e2756cfe1a0ec5ec50d839ab63dff /source3/python/py_spoolss_ports.c
parent5414561d40f02fe29ff24f61fd46d3c1af7c4654 (diff)
downloadsamba-c15c667afbc221944745ce2a14f138bcb0e9e1ed.tar.gz
samba-c15c667afbc221944745ce2a14f138bcb0e9e1ed.tar.bz2
samba-c15c667afbc221944745ce2a14f138bcb0e9e1ed.zip
Start to make argument ordering consistent.
(This used to be commit e84cc7ea84042b2460baef32a39448d620612bbc)
Diffstat (limited to 'source3/python/py_spoolss_ports.c')
-rw-r--r--source3/python/py_spoolss_ports.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/python/py_spoolss_ports.c b/source3/python/py_spoolss_ports.c
index a7d55a7897..d224408476 100644
--- a/source3/python/py_spoolss_ports.c
+++ b/source3/python/py_spoolss_ports.c
@@ -51,8 +51,8 @@ PyObject *spoolss_enumports(PyObject *self, PyObject *args, PyObject *kw)
/* Parse parameters */
if (!PyArg_ParseTupleAndKeywords(args, kw, "s|iO!", kwlist,
- &server, &level, &PyDict_Type,
- &creds))
+ &server, &creds, &level,
+ &PyDict_Type))
return NULL;
if (server[0] == '\\' && server[1] == '\\')