We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0df06f commit ccf4ae9Copy full SHA for ccf4ae9
ext/session/php_session.h
@@ -299,11 +299,11 @@ PHPAPI void php_session_reset_id(void);
299
HashTable *_ht = Z_ARRVAL_P(Z_REFVAL(PS(http_session_vars))); \
300
ZEND_HASH_FOREACH_KEY(_ht, num_key, key) { \
301
if (key == NULL) { \
302
- php_error_docref(NULL, E_NOTICE, \
303
- "Skipping numeric key " ZEND_ULONG_FMT, num_key); \
+ php_error_docref(NULL, E_NOTICE, \
+ "Skipping numeric key " ZEND_LONG_FMT, num_key);\
304
continue; \
305
} \
306
- if ((struc = php_get_session_var(key))) { \
+ if ((struc = php_get_session_var(key))) { \
307
code; \
308
309
} ZEND_HASH_FOREACH_END(); \
0 commit comments