]> granicus.if.org Git - python/commitdiff
Merged revisions 85679 via svnmerge from
authorGeorg Brandl <georg@python.org>
Tue, 23 Nov 2010 07:56:33 +0000 (07:56 +0000)
committerGeorg Brandl <georg@python.org>
Tue, 23 Nov 2010 07:56:33 +0000 (07:56 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r85679 | georg.brandl | 2010-10-18 07:06:18 +0200 (Mo, 18 Okt 2010) | 1 line

  Fix compiler warnings about formatting pid_t as an int, by always casting to long.
........

Modules/_multiprocessing/semaphore.c

index 1dfd08eca6f82bdbcf3c1b8e88f03f6b163ec102..5bda1ce12a03a0bc7a44252681f2f738c00512af 100644 (file)
@@ -433,7 +433,7 @@ semlock_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
         return NULL;
     }
 
-    PyOS_snprintf(buffer, sizeof(buffer), "/mp%d-%d", getpid(), counter++);
+    PyOS_snprintf(buffer, sizeof(buffer), "/mp%ld-%d", (long)getpid(), counter++);
 
     SEM_CLEAR_ERROR();
     handle = SEM_CREATE(buffer, value, maxvalue);