Skip to content

Commit ccf4ae9

Browse files
committed
Restored signed format specifier
1 parent a0df06f commit ccf4ae9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/session/php_session.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -299,11 +299,11 @@ PHPAPI void php_session_reset_id(void);
299299
HashTable *_ht = Z_ARRVAL_P(Z_REFVAL(PS(http_session_vars))); \
300300
ZEND_HASH_FOREACH_KEY(_ht, num_key, key) { \
301301
if (key == NULL) { \
302-
php_error_docref(NULL, E_NOTICE, \
303-
"Skipping numeric key " ZEND_ULONG_FMT, num_key); \
302+
php_error_docref(NULL, E_NOTICE, \
303+
"Skipping numeric key " ZEND_LONG_FMT, num_key);\
304304
continue; \
305305
} \
306-
if ((struc = php_get_session_var(key))) { \
306+
if ((struc = php_get_session_var(key))) { \
307307
code; \
308308
} \
309309
} ZEND_HASH_FOREACH_END(); \

0 commit comments

Comments
 (0)