Better and unicode compatible repr for PluginData.
[collectd.git] / src / cpython.h
index 10a1a54..8c7ad65 100644 (file)
@@ -83,9 +83,9 @@
 
 #define CPY_SUBSTITUTE(func, a, ...) do {\
        if ((a) != NULL) {\
-               PyObject *tmp = (a);\
+               PyObject *__tmp = (a);\
                (a) = func(__VA_ARGS__);\
-               Py_DECREF(tmp);\
+               Py_DECREF(__tmp);\
        }\
 } while(0)