Commit b4ddfa41 authored by Benjamin Peterson's avatar Benjamin Peterson

fix compiler warning

parent e5bf3839
......@@ -441,7 +441,7 @@ Py_MakePendingCalls(void)
for (i=0; i<NPENDINGCALLS; i++) {
int j;
int (*func)(void *);
void *arg;
void *arg = NULL;
/* pop one item off the queue while holding the lock */
PyThread_acquire_lock(pending_lock, WAIT_LOCK);
......
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