Skip to content

Commit

Permalink
Fix ZTS.
Browse files Browse the repository at this point in the history
  • Loading branch information
andreiz committed May 3, 2010
1 parent 3faa173 commit 9d019e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php_memcached.c
Expand Up @@ -3375,7 +3375,7 @@ static void php_memc_register_constants(INIT_FUNC_ARGS)
{
#define REGISTER_MEMC_CLASS_CONST_LONG(name, value) zend_declare_class_constant_long(php_memc_get_ce() , ZEND_STRS( #name ) - 1, value TSRMLS_CC)
#define REGISTER_MEMC_CLASS_CONST_BOOL(name, value) zend_declare_class_constant_bool(php_memc_get_ce() , ZEND_STRS( #name ) - 1, value TSRMLS_CC)
#define REGISTER_MEMC_CLASS_CONST_NULL(name) zend_declare_class_constant_null(php_memc_get_ce() , ZEND_STRS( #name ) - 1)
#define REGISTER_MEMC_CLASS_CONST_NULL(name) zend_declare_class_constant_null(php_memc_get_ce() , ZEND_STRS( #name ) - 1 TSRMLS_CC)

/*
* Class options
Expand Down

0 comments on commit 9d019e7

Please sign in to comment.