mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
fix build - PRIu64 vs %I64u
This commit is contained in:
parent
e6084da473
commit
4a85b5e190
1 changed files with 4 additions and 0 deletions
|
@ -292,7 +292,11 @@ static inline int add_post_vars(zval *arr, post_var_data_t *vars, zend_bool eof
|
||||||
while (add_post_var(arr, vars, eof TSRMLS_CC)) {
|
while (add_post_var(arr, vars, eof TSRMLS_CC)) {
|
||||||
if (++vars->cnt > max_vars) {
|
if (++vars->cnt > max_vars) {
|
||||||
php_error_docref(NULL TSRMLS_CC, E_WARNING,
|
php_error_docref(NULL TSRMLS_CC, E_WARNING,
|
||||||
|
#ifdef PHP_WIN32
|
||||||
|
"Input variables exceeded %I64u. "
|
||||||
|
#else
|
||||||
"Input variables exceeded %" PRIu64 ". "
|
"Input variables exceeded %" PRIu64 ". "
|
||||||
|
#endif
|
||||||
"To increase the limit change max_input_vars in php.ini.",
|
"To increase the limit change max_input_vars in php.ini.",
|
||||||
max_vars);
|
max_vars);
|
||||||
return FAILURE;
|
return FAILURE;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue