From: Benjamin Peterson Date: Wed, 26 Dec 2012 22:43:33 +0000 (-0600) Subject: use more specific type X-Git-Tag: v3.4.0a1~1761 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=513762fe9c1c241dc1a3b69a3fe81bc90690b03e;p=thirdparty%2FPython%2Fcpython.git use more specific type --- diff --git a/Objects/longobject.c b/Objects/longobject.c index cea2f730a414..49e9d5d91592 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;