diff options
author | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2002-12-04 12:27:06 +0000 |
---|---|---|
committer | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2002-12-04 12:27:06 +0000 |
commit | 938e40fb00c48819633d3c234bf3045040cdfc47 (patch) | |
tree | a7574b24838593fa6a41f1020650761827c74cf6 /Python/thread_os2.h | |
parent | 47df3a9f813b0f76bc69adbbc019fa933ed3574b (diff) | |
download | cpython-938e40fb00c48819633d3c234bf3045040cdfc47.tar.gz |
typo fix: declaration required for VACPP not EMX+gcc
Diffstat (limited to 'Python/thread_os2.h')
-rw-r--r-- | Python/thread_os2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/thread_os2.h b/Python/thread_os2.h index 69bcd2ce50..738976ac95 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 |