summaryrefslogtreecommitdiff
path: root/bindings/python
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-02-11 16:50:40 +0100
committerMartin Sustrik <sustrik@250bpm.com>2010-02-11 16:50:40 +0100
commit92d0147b20f77cad5d20e257aec502f628e7889e (patch)
tree1e4e1c045fd546ff6ffe7c9f5481831f9cc8b28b /bindings/python
parent432fbd796bb4905fb19ceee802009b17e88e9256 (diff)
python binding build with 2.4 version of python fixed
Diffstat (limited to 'bindings/python')
-rw-r--r--bindings/python/pyzmq.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python/pyzmq.cpp b/bindings/python/pyzmq.cpp
index 7a53c8e..7a1905a 100644
--- a/bindings/python/pyzmq.cpp
+++ b/bindings/python/pyzmq.cpp
@@ -465,7 +465,7 @@ PyMODINIT_FUNC initlibpyzmq ()
assert (rc == 0);
PyObject *module = Py_InitModule3 ("libpyzmq", module_methods,
- libpyzmq_doc);
+ (char*) libpyzmq_doc);
if (!module)
return;