fix build - PRIu64 vs %I64u

This commit is contained in:
Anatol Belski 2013-09-17 16:02:08 +02:00
parent e6084da473
commit 4a85b5e190

View file

@ -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)) {
if (++vars->cnt > max_vars) {
php_error_docref(NULL TSRMLS_CC, E_WARNING,
#ifdef PHP_WIN32
"Input variables exceeded %I64u. "
#else
"Input variables exceeded %" PRIu64 ". "
#endif
"To increase the limit change max_input_vars in php.ini.",
max_vars);
return FAILURE;