diff options
Diffstat (limited to 'ext/standard/formatted_print.c')
-rw-r--r-- | ext/standard/formatted_print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/formatted_print.c b/ext/standard/formatted_print.c index 502de05cb2..39034bc685 100644 --- a/ext/standard/formatted_print.c +++ b/ext/standard/formatted_print.c @@ -87,7 +87,7 @@ php_sprintf_appendstring(zend_string **buffer, size_t *pos, char *add, m_width = MAX(min_width, copy_len); if(m_width > INT_MAX - *pos - 1) { - zend_error_noreturn(E_ERROR, "Field width %d is too long", m_width); + zend_error_noreturn(E_ERROR, "Field width %zd is too long", m_width); } req_size = *pos + m_width + 1; |