From: Skip Montanaro Date: Wed, 3 Mar 2004 08:42:23 +0000 (+0000) Subject: typo X-Git-Tag: v2.4a1~750 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6babcc2ad48f94ee15afac4a28c6f898937e20c7;p=python typo --- diff --git a/Python/thread_pthread.h b/Python/thread_pthread.h index db8eab1248..8645c0fb44 100644 --- a/Python/thread_pthread.h +++ b/Python/thread_pthread.h @@ -174,7 +174,7 @@ PyThread_start_new_thread(void (*func)(void *), void *arg) /* XXX This implementation is considered (to quote Tim Peters) "inherently hosed" because: - - It does not guanrantee the promise that a non-zero integer is returned. + - It does not guarantee the promise that a non-zero integer is returned. - The cast to long is inherently unsafe. - It is not clear that the 'volatile' (for AIX?) and ugly casting in the latter return statement (for Alpha OSF/1) are any longer necessary.