diff options
author | Anatol Belski <ab@php.net> | 2015-08-02 13:42:01 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2015-08-02 13:42:01 +0200 |
commit | 545b364d560b9550f853bd8dd5ab1641225a03c2 (patch) | |
tree | fe9dbef7d22f414dd94676df23cd0b869e9890e2 /ext/fileinfo/fileinfo.c | |
parent | 8c4bbf0f47cc5050196042f4c4b473ee4b9badb7 (diff) | |
download | php-git-545b364d560b9550f853bd8dd5ab1641225a03c2.tar.gz |
remove TSRMLS_*
either remains or merged in from PHP5
Diffstat (limited to 'ext/fileinfo/fileinfo.c')
-rw-r--r-- | ext/fileinfo/fileinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fileinfo/fileinfo.c b/ext/fileinfo/fileinfo.c index 8663372de3..3474a0a0aa 100644 --- a/ext/fileinfo/fileinfo.c +++ b/ext/fileinfo/fileinfo.c @@ -528,7 +528,7 @@ static void _php_finfo_get_type(INTERNAL_FUNCTION_PARAMETERS, int mode, int mime goto clean; } if (CHECK_NULL_PATH(buffer, buffer_len)) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid path"); + php_error_docref(NULL, E_WARNING, "Invalid path"); RETVAL_FALSE; goto clean; } |