summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-10-17 21:12:18 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-10-17 21:12:18 (GMT)
commit223f091737078cac481d2df99f22a9057d457885 (patch)
tree18d5dfc159d8edcdf7bd398caacaf5fe803a5648 /Modules
parent8f67d0893f7170986b0ad370844318544270cbcc (diff)
downloadcpython-223f091737078cac481d2df99f22a9057d457885.zip
cpython-223f091737078cac481d2df99f22a9057d457885.tar.gz
cpython-223f091737078cac481d2df99f22a9057d457885.tar.bz2
fix strict aliasing warnings
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_multiprocessing/multiprocessing.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_multiprocessing/multiprocessing.c b/Modules/_multiprocessing/multiprocessing.c
index 6858146..7c4f52d 100644
--- a/Modules/_multiprocessing/multiprocessing.c
+++ b/Modules/_multiprocessing/multiprocessing.c
@@ -122,7 +122,7 @@ multiprocessing_sendfd(PyObject *self, PyObject *args)
cmsg->cmsg_type = SCM_RIGHTS;
cmsg->cmsg_len = CMSG_LEN(sizeof(int));
msg.msg_controllen = cmsg->cmsg_len;
- *(int*)CMSG_DATA(cmsg) = fd;
+ *CMSG_DATA(cmsg) = fd;
Py_BEGIN_ALLOW_THREADS
res = sendmsg(conn, &msg, 0);
@@ -165,7 +165,7 @@ multiprocessing_recvfd(PyObject *self, PyObject *args)
if (res < 0)
return PyErr_SetFromErrno(PyExc_OSError);
- fd = *(int*)CMSG_DATA(cmsg);
+ fd = *CMSG_DATA(cmsg);
return Py_BuildValue("i", fd);
}