From f9db4dd6485be286fbbfa59a69d978845b3cef01 Mon Sep 17 00:00:00 2001 From: Marcelo Matus Date: Fri, 17 Sep 2004 22:08:48 +0000 Subject: [PATCH] fix anoher warning git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6255 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Lib/python/pywstrings.swg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/python/pywstrings.swg b/Lib/python/pywstrings.swg index 5c09fa4ed..8edcd0ac2 100644 --- a/Lib/python/pywstrings.swg +++ b/Lib/python/pywstrings.swg @@ -123,7 +123,7 @@ SWIG_AsWCharArray(PyObject *obj, wchar_t *val, size_t size) if (val) { PyErr_Format(PyExc_TypeError, "a wchar_t array of maximum size %lud is expected", - size); + (unsigned long) size); } return 0; }