summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-12-26 22:43:33 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-12-26 22:43:33 (GMT)
commit513762fe9c1c241dc1a3b69a3fe81bc90690b03e (patch)
tree276a6734be204bccc512184fb7daddab9d934a13
parent0c8ee7fc8bfaf90a0717c1149f03df00a7ad6b16 (diff)
downloadcpython-513762fe9c1c241dc1a3b69a3fe81bc90690b03e.zip
cpython-513762fe9c1c241dc1a3b69a3fe81bc90690b03e.tar.gz
cpython-513762fe9c1c241dc1a3b69a3fe81bc90690b03e.tar.bz2
use more specific type
-rw-r--r--Objects/longobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c
index cea2f73..49e9d5d 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;