Kaydet (Commit) b4ddfa41 authored tarafından Benjamin Peterson's avatar Benjamin Peterson

fix compiler warning

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