]> granicus.if.org Git - python/commitdiff
use more specific type
authorBenjamin Peterson <benjamin@python.org>
Wed, 26 Dec 2012 22:43:33 +0000 (16:43 -0600)
committerBenjamin Peterson <benjamin@python.org>
Wed, 26 Dec 2012 22:43:33 +0000 (16:43 -0600)
Objects/longobject.c

index cea2f730a4148c297ef26e49976e37050c4db10e..49e9d5d9159295d7791c084902d03cca8bd24b9c 100644 (file)
@@ -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;