From 354878f76fb6689e26a62ef988564c099991edc0 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Mon, 21 Oct 2002 04:17:43 +0000 Subject: level should be a uint32 in enum_ports function. (This used to be commit 121db5b6821df9c6ec05adb2d35c2dde930736f2) --- source3/python/py_spoolss_ports.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/python') diff --git a/source3/python/py_spoolss_ports.c b/source3/python/py_spoolss_ports.c index 75c8c4aa28..55716aca6e 100644 --- a/source3/python/py_spoolss_ports.c +++ b/source3/python/py_spoolss_ports.c @@ -26,7 +26,7 @@ PyObject *spoolss_enumports(PyObject *self, PyObject *args, PyObject *kw) { WERROR werror; PyObject *result = NULL, *creds = NULL; - int level = 1; + uint32 level = 1; uint32 i, needed, num_ports; static char *kwlist[] = {"server", "level", "creds", NULL}; TALLOC_CTX *mem_ctx = NULL; -- cgit