diff --git a/Objects/longobject.c b/Objects/longobject.c index cea2f730a41..49e9d5d9159 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -4072,7 +4072,7 @@ v_complement(digit *z, digit *a, Py_ssize_t m) static PyObject * long_bitwise(PyLongObject *a, - int op, /* '&', '|', '^' */ + char op, /* '&', '|', '^' */ PyLongObject *b) { int nega, negb, negz;