diff options
Diffstat (limited to 'Objects/call.c')
-rw-r--r-- | Objects/call.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/call.c b/Objects/call.c index 3b08cb2592..4294a9beb0 100644 --- a/Objects/call.c +++ b/Objects/call.c @@ -499,7 +499,7 @@ _PyMethodDef_RawFastCallDict(PyMethodDef *method, PyObject *self, PyObject **arg if (kwargs != NULL && PyDict_GET_SIZE(kwargs) != 0) { goto no_keyword_error; } - /* fall through next case */ + /* fall through */ case METH_VARARGS | METH_KEYWORDS: { @@ -656,7 +656,7 @@ _PyMethodDef_RawFastCallKeywords(PyMethodDef *method, PyObject *self, PyObject * if (nkwargs) { goto no_keyword_error; } - /* fall through next case */ + /* fall through */ case METH_VARARGS | METH_KEYWORDS: { |