summaryrefslogtreecommitdiff
path: root/Python/thread_pthread.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-04-10 22:27:42 +0000
committerGuido van Rossum <guido@python.org>1998-04-10 22:27:42 +0000
commitcf5a7b9949ab594980307796540a9536c96f9b91 (patch)
treed3173bda6c1766b60aae491fe59a259a55067eea /Python/thread_pthread.h
parent2771d71f63e13028929794869adf2d1d5a73d0a9 (diff)
downloadcpython-cf5a7b9949ab594980307796540a9536c96f9b91.tar.gz
Make new gcc -Wall happy
Diffstat (limited to 'Python/thread_pthread.h')
-rw-r--r--Python/thread_pthread.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/thread_pthread.h b/Python/thread_pthread.h
index 5b70fa4e3c..2f57b36e19 100644
--- a/Python/thread_pthread.h
+++ b/Python/thread_pthread.h
@@ -175,11 +175,12 @@ long get_thread_ident _P0()
static void do_exit_thread _P1(no_cleanup, int no_cleanup)
{
dprintf(("exit_thread called\n"));
- if (!initialized)
+ if (!initialized) {
if (no_cleanup)
_exit(0);
else
exit(0);
+ }
}
void exit_thread _P0()