Skip to content

Commit

Permalink
Merge pull request laruence#88 from DigDeeply/master
Browse files Browse the repository at this point in the history
YAF_SHUTDOWN_FUNCTION marco error.
  • Loading branch information
laruence committed Mar 12, 2014
2 parents 966c8ec + c6951b9 commit 1097e40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php_yaf.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ extern zend_module_entry yaf_module_entry;
#define YAF_STARTUP_FUNCTION(module) ZEND_MINIT_FUNCTION(yaf_##module)
#define YAF_RINIT_FUNCTION(module) ZEND_RINIT_FUNCTION(yaf_##module)
#define YAF_STARTUP(module) ZEND_MODULE_STARTUP_N(yaf_##module)(INIT_FUNC_ARGS_PASSTHRU)
#define YAF_SHUTDOWN_FUNCTION(module) ZEND_MINIT_FUNCTION(yaf_##module)
#define YAF_SHUTDOWN_FUNCTION(module) ZEND_MSHUTDOWN_FUNCTION(yaf_##module)
#define YAF_SHUTDOWN(module) ZEND_MODULE_SHUTDOWN_N(yaf_##module)(INIT_FUNC_ARGS_PASSTHRU)

#if ((PHP_MAJOR_VERSION == 5) && (PHP_MINOR_VERSION > 2)) || (PHP_MAJOR_VERSION > 5)
Expand Down

0 comments on commit 1097e40

Please sign in to comment.