diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2014-04-11 19:33:56 +0200 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2014-04-11 19:33:56 +0200 |
commit | 99d1a1bb3f96364d1ee7bf3e9c84215001200112 (patch) | |
tree | 503bcb95c4b156e15dc4c536da9b15023bb94d4d /ext/opcache | |
parent | 35b895fdf0fd2b4fe9ba0e9e7edc513a0a39e205 (diff) | |
download | php-git-99d1a1bb3f96364d1ee7bf3e9c84215001200112.tar.gz |
Shut up, my lovely compiler; I do not like your warnings
Diffstat (limited to 'ext/opcache')
-rw-r--r-- | ext/opcache/zend_accelerator_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/zend_accelerator_module.c b/ext/opcache/zend_accelerator_module.c index 53cf205f5e..1620c05621 100644 --- a/ext/opcache/zend_accelerator_module.c +++ b/ext/opcache/zend_accelerator_module.c @@ -779,7 +779,7 @@ static ZEND_FUNCTION(opcache_compile_file) op_array = persistent_compile_file(&handle, ZEND_INCLUDE TSRMLS_CC); } zend_catch { EG(current_execute_data) = orig_execute_data; - zend_error(E_WARNING, ACCELERATOR_PRODUCT_NAME " could not compile file %s" TSRMLS_CC, handle.filename); + zend_error(E_WARNING, ACCELERATOR_PRODUCT_NAME " could not compile file %s", handle.filename); } zend_end_try(); if(op_array != NULL) { |