summaryrefslogtreecommitdiffstats
path: root/Modules/_multiprocessing
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-11-23 07:56:33 (GMT)
committerGeorg Brandl <georg@python.org>2010-11-23 07:56:33 (GMT)
commit7e7a3a76fc146d32621d309fc6335ef5b9961bba (patch)
treed2736adc8c46f9078fcb3394d7cbc4867cccda44 /Modules/_multiprocessing
parent277896ad4ef90e87b4624190f7c8c38c994c92ee (diff)
downloadcpython-7e7a3a76fc146d32621d309fc6335ef5b9961bba.zip
cpython-7e7a3a76fc146d32621d309fc6335ef5b9961bba.tar.gz
cpython-7e7a3a76fc146d32621d309fc6335ef5b9961bba.tar.bz2
Merged revisions 85679 via svnmerge from
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. ........
Diffstat (limited to 'Modules/_multiprocessing')
-rw-r--r--Modules/_multiprocessing/semaphore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_multiprocessing/semaphore.c b/Modules/_multiprocessing/semaphore.c
index 1dfd08e..5bda1ce 100644
--- a/Modules/_multiprocessing/semaphore.c
+++ b/Modules/_multiprocessing/semaphore.c
@@ -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);