From: Amaury Forgeot d'Arc Date: Fri, 4 Jul 2008 21:34:47 +0000 (+0000) Subject: Correct a typo during previous checkin. X-Git-Tag: v3.0b2~95 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a073e33746ba6842850d1aa7833fcfaf1d1e74b7;p=thirdparty%2FPython%2Fcpython.git Correct a typo during previous checkin. --- diff --git a/Python/modsupport.c b/Python/modsupport.c index e39c315459ec..2531d0d1cabc 100644 --- a/Python/modsupport.c +++ b/Python/modsupport.c @@ -296,7 +296,7 @@ do_mkvalue(const char **p_format, va_list *p_va, int flags) int i = va_arg(*p_va, int); if (i < 0 || i > PyUnicode_GetMax()) { PyErr_SetString(PyExc_OverflowError, - "%c arg not in range(0x110000)"; + "%c arg not in range(0x110000)"); return NULL; } return PyUnicode_FromOrdinal(i);