diff options
author | Sara Golemon <pollita@php.net> | 2005-05-16 22:46:05 +0000 |
---|---|---|
committer | Sara Golemon <pollita@php.net> | 2005-05-16 22:46:05 +0000 |
commit | c281eb38aefa3a1cb4ce39d5cb59ab52ab9093d9 (patch) | |
tree | d0fb86595b35d6f5a32c70aed8ada25e4aa1aee1 /TSRM | |
parent | 9af73f68ef5ead323fe9bab868db7560bddb80f8 (diff) | |
download | php-git-c281eb38aefa3a1cb4ce39d5cb59ab52ab9093d9.tar.gz |
Unterminated paren group in BETHREADS definition of tsrm_tls_set() macro
Diffstat (limited to 'TSRM')
-rw-r--r-- | TSRM/TSRM.c | 2 |
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 |