diff options
author | foobar <sniper@php.net> | 2003-01-09 00:15:33 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2003-01-09 00:15:33 +0000 |
commit | 66fd5008ab10fa40a8261e2cee50622567e4e600 (patch) | |
tree | 14e7adb57dedd68269cc22d3bd1142d631406623 | |
parent | 59393ef3ad83d208ce6759f1d547748d77b61740 (diff) | |
download | php-git-66fd5008ab10fa40a8261e2cee50622567e4e600.tar.gz |
Fix the ZTS build.
-rw-r--r-- | ext/standard/image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/image.c b/ext/standard/image.c index 20571ea6a1..ad7eecd1be 100644 --- a/ext/standard/image.c +++ b/ext/standard/image.c @@ -953,7 +953,7 @@ PHPAPI int php_getimagetype(php_stream * stream, char *filetype TSRMLS_DC) if (!memcmp(filetype, php_sig_iff, 4)) { return IMAGE_FILETYPE_IFF; } - if (php_get_wbmp(stream, NULL, 1 TSRMLS_DC)) { + if (php_get_wbmp(stream, NULL, 1 TSRMLS_CC)) { return IMAGE_FILETYPE_WBMP; } |