Commit c3547a31 authored by Thomas Wouters's avatar Thomas Wouters

Fix C99-ism, and add XXX to comment

parent 15bfc3b0
...@@ -849,7 +849,7 @@ convertsimple(PyObject *arg, const char **p_format, va_list *p_va, int flags, ...@@ -849,7 +849,7 @@ convertsimple(PyObject *arg, const char **p_format, va_list *p_va, int flags,
arg, msgbuf, bufsize); arg, msgbuf, bufsize);
if (*format == '#') { if (*format == '#') {
FETCH_SIZE; FETCH_SIZE;
assert(0); // redundant with if-case assert(0); /* XXX redundant with if-case */
if (arg == Py_None) if (arg == Py_None)
*q = 0; *q = 0;
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment