fix compiler warning

This commit is contained in:
Benjamin Peterson 2009-01-17 23:46:54 +00:00
parent e5bf383959
commit b4ddfa41cc
1 changed files with 1 additions and 1 deletions

View File

@ -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);