summaryrefslogtreecommitdiff
path: root/Python/getargs.c
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2006-03-01 21:31:21 +0000
committerThomas Wouters <thomas@python.org>2006-03-01 21:31:21 +0000
commitc3547a311eda0e8c398841b40b5beed332de499e (patch)
treeeabeabbc4e51cc602e75bf70463b9b92973ec0dc /Python/getargs.c
parent15bfc3b082a0f62d45dd5ab15e05243dc57e2692 (diff)
downloadcpython-git-c3547a311eda0e8c398841b40b5beed332de499e.tar.gz
Fix C99-ism, and add XXX to comment
Diffstat (limited to 'Python/getargs.c')
-rw-r--r--Python/getargs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/getargs.c b/Python/getargs.c
index 4f4164e9da..8ee7d2fcbb 100644
--- a/Python/getargs.c
+++ b/Python/getargs.c
@@ -849,7 +849,7 @@ convertsimple(PyObject *arg, const char **p_format, va_list *p_va, int flags,
arg, msgbuf, bufsize);
if (*format == '#') {
FETCH_SIZE;
- assert(0); // redundant with if-case
+ assert(0); /* XXX redundant with if-case */
if (arg == Py_None)
*q = 0;
else