diff options
author | Dmitry Stogov <dmitry@zend.com> | 2014-06-30 18:08:16 +0400 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2014-06-30 18:08:16 +0400 |
commit | 424894de021f1be6fce205bea46de89838c8e600 (patch) | |
tree | 7344922b74e9f9a901b8ef7f903335903cac1d21 /ext/intl/timezone/timezone_methods.cpp | |
parent | b7715c7e8a6166f84d9c4d6e35bffef853cabc5c (diff) | |
download | php-git-424894de021f1be6fce205bea46de89838c8e600.tar.gz |
Fixed compilation problems
Diffstat (limited to 'ext/intl/timezone/timezone_methods.cpp')
-rw-r--r-- | ext/intl/timezone/timezone_methods.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/intl/timezone/timezone_methods.cpp b/ext/intl/timezone/timezone_methods.cpp index cde090c243..2b1bcfab92 100644 --- a/ext/intl/timezone/timezone_methods.cpp +++ b/ext/intl/timezone/timezone_methods.cpp @@ -245,9 +245,9 @@ U_CFUNC PHP_FUNCTION(intltz_create_time_zone_id_enumeration) /* must come before zpp because zpp would convert the arg in the stack to 0 */ if (ZEND_NUM_ARGS() == 3) { - zval **dummy, **zvoffset; + zval *dummy, *zvoffset; arg3isnull = zend_get_parameters_ex(3, &dummy, &dummy, &zvoffset) - != FAILURE && Z_TYPE_PP(zvoffset) == IS_NULL; + != FAILURE && Z_TYPE_P(zvoffset) == IS_NULL; } if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l|s!l", |