diff options
author | Hannes Magnusson <bjori@php.net> | 2009-05-19 10:00:12 +0000 |
---|---|---|
committer | Hannes Magnusson <bjori@php.net> | 2009-05-19 10:00:12 +0000 |
commit | 45b2586666fbe3fe3c0dc162f8164e8a36bdc053 (patch) | |
tree | cf1ff5a53880fee834551735312aebd1e35afd89 /TSRM/tsrm_win32.c | |
parent | ec9b82f0f4c7eb48ddacd0f6945e3f406b8c82a1 (diff) | |
download | php-git-45b2586666fbe3fe3c0dc162f8164e8a36bdc053.tar.gz |
Fix build
Diffstat (limited to 'TSRM/tsrm_win32.c')
-rw-r--r-- | TSRM/tsrm_win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TSRM/tsrm_win32.c b/TSRM/tsrm_win32.c index 5ab39856c2..7eb18b29d3 100644 --- a/TSRM/tsrm_win32.c +++ b/TSRM/tsrm_win32.c @@ -69,7 +69,7 @@ static void tsrm_win32_dtor(tsrm_win32_globals *globals TSRMLS_DC) free(globals->comspec); - If(globals->impersonation_token) { + if(globals->impersonation_token) { CloseHandle(globals->impersonation_token); } } |