summaryrefslogtreecommitdiff
path: root/main/php_output.h
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-10-07 09:09:46 +0200
committerAnatol Belski <ab@php.net>2014-10-07 09:09:46 +0200
commitebaa6a74a51d435c81489d7ea5df41e286135465 (patch)
tree2f9fd0b5f7d6ff1cd0a2a193177bc6f5df14edea /main/php_output.h
parent38a076682fc69c44c5864fe7e7552e7838ff5a05 (diff)
downloadphp-git-ebaa6a74a51d435c81489d7ea5df41e286135465.tar.gz
force more static tsrmls cache usage
Diffstat (limited to 'main/php_output.h')
-rw-r--r--main/php_output.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_output.h b/main/php_output.h
index bcce8720e1..69a45878cd 100644
--- a/main/php_output.h
+++ b/main/php_output.h
@@ -148,7 +148,7 @@ ZEND_END_MODULE_GLOBALS(output)
/* there should not be a need to use OG() from outside of output.c */
#ifdef ZTS
-# define OG(v) TSRMG(output_globals_id, zend_output_globals *, v)
+# define OG(v) ZEND_TSRMG(output_globals_id, zend_output_globals *, v)
#else
# define OG(v) (output_globals.v)
#endif