summaryrefslogtreecommitdiff
path: root/TSRM
diff options
context:
space:
mode:
authorSara Golemon <pollita@php.net>2005-05-16 22:46:05 +0000
committerSara Golemon <pollita@php.net>2005-05-16 22:46:05 +0000
commitc281eb38aefa3a1cb4ce39d5cb59ab52ab9093d9 (patch)
treed0fb86595b35d6f5a32c70aed8ada25e4aa1aee1 /TSRM
parent9af73f68ef5ead323fe9bab868db7560bddb80f8 (diff)
downloadphp-git-c281eb38aefa3a1cb4ce39d5cb59ab52ab9093d9.tar.gz
Unterminated paren group in BETHREADS definition of tsrm_tls_set() macro
Diffstat (limited to 'TSRM')
-rw-r--r--TSRM/TSRM.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/TSRM/TSRM.c b/TSRM/TSRM.c
index 5c1482d1b8..dd6557d21c 100644
--- a/TSRM/TSRM.c
+++ b/TSRM/TSRM.c
@@ -107,7 +107,7 @@ static DWORD tls_key;
#elif defined(BETHREADS)
static int32 tls_key;
-# define tsrm_tls_set(what) tls_set(tls_key, (void*)(what)
+# define tsrm_tls_set(what) tls_set(tls_key, (void*)(what))
# define tsrm_tls_get() (tsrm_tls_entry*)tls_get(tls_key)
#else