From: Dmitry Stogov Date: Tue, 21 Jun 2016 17:12:04 +0000 (+0300) Subject: Restored signed format specifier X-Git-Tag: php-7.1.0alpha2~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ccf4ae95bd4801b5599936524b5466e6762c783d;p=php Restored signed format specifier --- diff --git a/ext/session/php_session.h b/ext/session/php_session.h index 9b4d40bac9..37e66a00b3 100644 --- a/ext/session/php_session.h +++ b/ext/session/php_session.h @@ -299,11 +299,11 @@ PHPAPI void php_session_reset_id(void); HashTable *_ht = Z_ARRVAL_P(Z_REFVAL(PS(http_session_vars))); \ ZEND_HASH_FOREACH_KEY(_ht, num_key, key) { \ if (key == NULL) { \ - php_error_docref(NULL, E_NOTICE, \ - "Skipping numeric key " ZEND_ULONG_FMT, num_key); \ + php_error_docref(NULL, E_NOTICE, \ + "Skipping numeric key " ZEND_LONG_FMT, num_key);\ continue; \ } \ - if ((struc = php_get_session_var(key))) { \ + if ((struc = php_get_session_var(key))) { \ code; \ } \ } ZEND_HASH_FOREACH_END(); \