]> granicus.if.org Git - python/commitdiff
typo fix: declaration required for VACPP not EMX+gcc
authorAndrew MacIntyre <andymac@bullseye.apana.org.au>
Wed, 4 Dec 2002 12:27:06 +0000 (12:27 +0000)
committerAndrew MacIntyre <andymac@bullseye.apana.org.au>
Wed, 4 Dec 2002 12:27:06 +0000 (12:27 +0000)
Python/thread_os2.h

index 69bcd2ce504ff539a230b199dad09f11453ceb9e..738976ac959e3962dc8990ed52e738ad2f882180 100644 (file)
@@ -230,7 +230,7 @@ PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag)
 
 void PyThread_release_lock(PyThread_type_lock aLock)
 {
-#if defined(PYCC_GCC)
+#if !defined(PYCC_GCC)
   type_os2_lock lock = (type_os2_lock)aLock;
 #endif