From 26efe402c2a5dba441dc2feae2f15fea6be452ba Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Thu, 16 Feb 2006 06:21:57 +0000 Subject: Get rid of compiler warnings (gcc 3.3.4 on x86) --- Objects/funcobject.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Objects/funcobject.c') diff --git a/Objects/funcobject.c b/Objects/funcobject.c index 4abf51ad26..d644001227 100644 --- a/Objects/funcobject.c +++ b/Objects/funcobject.c @@ -251,7 +251,7 @@ func_set_code(PyFunctionObject *op, PyObject *value) "%s() requires a code object with %ld free vars," " not %ld", PyString_AsString(op->func_name), - nclosure, nfree); + (long)nclosure, (long)nfree); return -1; } tmp = op->func_code; @@ -403,7 +403,7 @@ func_new(PyTypeObject* type, PyObject* args, PyObject* kw) return PyErr_Format(PyExc_ValueError, "%s requires closure of length %ld, not %ld", PyString_AS_STRING(code->co_name), - nfree, nclosure); + (long)nfree, (long)nclosure); if (nclosure) { Py_ssize_t i; for (i = 0; i < nclosure; i++) { -- cgit v1.2.1