From d3f91908dd2c2ab79d16bfe235da34f2fc19c114 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Sat, 23 Sep 2006 04:11:38 +0000 Subject: Remove extra semi-colons reported by Johnny Lee on python-dev. Backport if anyone cares. --- Python/pystate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python') diff --git a/Python/pystate.c b/Python/pystate.c index 639278f690..cc25e3ed38 100644 --- a/Python/pystate.c +++ b/Python/pystate.c @@ -501,7 +501,7 @@ _PyGILState_Fini(void) { PyThread_delete_key(autoTLSkey); autoTLSkey = 0; - autoInterpreterState = NULL;; + autoInterpreterState = NULL; } /* When a thread state is created for a thread by some mechanism other than -- cgit v1.2.1