summaryrefslogtreecommitdiff
path: root/Python/formatter_unicode.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-09 20:14:05 -0700
committerBenjamin Peterson <benjamin@python.org>2016-09-09 20:14:05 -0700
commit572489f9a0bd0439f47b1daed179f28785858b71 (patch)
treeedaf5307622419bffe09ab8abd66a9ea75910d0c /Python/formatter_unicode.c
parent2e1552a461ff00b96b4a90be7c54ba4acaf0e059 (diff)
downloadcpython-572489f9a0bd0439f47b1daed179f28785858b71.tar.gz
make invalid_comma_and_underscore a real prototype
Diffstat (limited to 'Python/formatter_unicode.c')
-rw-r--r--Python/formatter_unicode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/formatter_unicode.c b/Python/formatter_unicode.c
index 95c507ec6e..c4a2d9dbfe 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 '_'.");
}