Commit eddb0a78 authored by Benjamin Peterson's avatar Benjamin Peterson

fix compiler warning

parent 605a774a
...@@ -803,7 +803,7 @@ r_object(RFILE *p) ...@@ -803,7 +803,7 @@ r_object(RFILE *p)
/* NULL is a valid return value, it does not necessarily means that /* NULL is a valid return value, it does not necessarily means that
an exception is set. */ an exception is set. */
PyObject *v, *v2; PyObject *v, *v2;
Py_ssize_t idx; Py_ssize_t idx = 0;
long i, n; long i, n;
int type = r_byte(p); int type = r_byte(p);
int flag; int flag;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment