diff options
author | Anatol Belski <ab@php.net> | 2014-08-24 02:35:34 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-08-24 02:35:34 +0200 |
commit | 70de6180d5a022806212d2b6eebbba48af827940 (patch) | |
tree | 5967f49d9fb27fd7d45da1fe83acfb072e290a12 /main/SAPI.c | |
parent | 86674b5837bffe4486714f9661620020ee498f3b (diff) | |
download | php-git-70de6180d5a022806212d2b6eebbba48af827940.tar.gz |
fixes to %pd format usage
Diffstat (limited to 'main/SAPI.c')
-rw-r--r-- | main/SAPI.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/SAPI.c b/main/SAPI.c index 9d8a19dc6d..a3826b0e1b 100644 --- a/main/SAPI.c +++ b/main/SAPI.c @@ -269,7 +269,7 @@ SAPI_API int sapi_read_post_block(char *buffer, size_t buflen TSRMLS_DC) SAPI_API SAPI_POST_READER_FUNC(sapi_read_standard_form_data) { if ((SG(post_max_size) > 0) && (SG(request_info).content_length > SG(post_max_size))) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "POST Content-Length of %ld bytes exceeds the limit of %ld bytes", + php_error_docref(NULL TSRMLS_CC, E_WARNING, "POST Content-Length of %pd bytes exceeds the limit of %pd bytes", SG(request_info).content_length, SG(post_max_size)); return; } |