Kaydet (Commit) 4cea605e authored tarafından Guido van Rossum's avatar Guido van Rossum

Quick fix by Mark Hammond -- Yakov changed a dprintf call but it was

referencing an undefined variable, so we better change it back.
üst 51931144
...@@ -167,7 +167,7 @@ int PyThread_start_new_thread(void (*func)(void *), void *arg) ...@@ -167,7 +167,7 @@ int PyThread_start_new_thread(void (*func)(void *), void *arg)
if (rv != -1) { if (rv != -1) {
success = 1; success = 1;
dprintf(("%ld: PyThread_start_new_thread succeeded: %ld\n", PyThread_get_thread_ident(), aThreadId)); dprintf(("%ld: PyThread_start_new_thread succeeded: %ld\n", PyThread_get_thread_ident(), rv));
} }
return success; return success;
......
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