summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorAndrew MacIntyre <andymac@bullseye.apana.org.au>2002-12-04 12:27:06 (GMT)
committerAndrew MacIntyre <andymac@bullseye.apana.org.au>2002-12-04 12:27:06 (GMT)
commit69049599219b469282f272658178a8a50e67e3e6 (patch)
tree81fb7e9e1ad75c18fdb198e7f12cad18224edab0 /Python
parentb02bb5ed0a45571c3be195cd053bb28e408a99cd (diff)
downloadcpython-69049599219b469282f272658178a8a50e67e3e6.zip
cpython-69049599219b469282f272658178a8a50e67e3e6.tar.gz
cpython-69049599219b469282f272658178a8a50e67e3e6.tar.bz2
typo fix: declaration required for VACPP not EMX+gcc
Diffstat (limited to 'Python')
-rw-r--r--Python/thread_os2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/thread_os2.h b/Python/thread_os2.h
index 69bcd2c..738976a 100644
--- a/Python/thread_os2.h
+++ b/Python/thread_os2.h
@@ -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