From: Benjamin Peterson Date: Sat, 10 Sep 2016 03:14:05 +0000 (-0700) Subject: make invalid_comma_and_underscore a real prototype X-Git-Tag: v3.6.0b1~120 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eb0dfa9251102e42bdabcb84de17cecb43537442;p=thirdparty%2FPython%2Fcpython.git make invalid_comma_and_underscore a real prototype --- diff --git a/Python/formatter_unicode.c b/Python/formatter_unicode.c index 95c507ec6ea8..c4a2d9dbfec9 100644 --- a/Python/formatter_unicode.c +++ b/Python/formatter_unicode.c @@ -41,7 +41,7 @@ invalid_comma_type(Py_UCS4 presentation_type) } static void -invalid_comma_and_underscore() +invalid_comma_and_underscore(void) { PyErr_Format(PyExc_ValueError, "Cannot specify both ',' and '_'."); }