Skip to content

Commit 4cea605

Browse files
committed
Quick fix by Mark Hammond -- Yakov changed a dprintf call but it was
referencing an undefined variable, so we better change it back.
1 parent 5193114 commit 4cea605

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/thread_nt.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ int PyThread_start_new_thread(void (*func)(void *), void *arg)
167167

168168
if (rv != -1) {
169169
success = 1;
170-
dprintf(("%ld: PyThread_start_new_thread succeeded: %ld\n", PyThread_get_thread_ident(), aThreadId));
170+
dprintf(("%ld: PyThread_start_new_thread succeeded: %ld\n", PyThread_get_thread_ident(), rv));
171171
}
172172

173173
return success;

0 commit comments

Comments
 (0)