From c3547a311eda0e8c398841b40b5beed332de499e Mon Sep 17 00:00:00 2001 From: Thomas Wouters Date: Wed, 1 Mar 2006 21:31:21 +0000 Subject: Fix C99-ism, and add XXX to comment --- Python/getargs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/getargs.c b/Python/getargs.c index 4f4164e..8ee7d2f 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 -- cgit v0.12