From: Ilia Alshanetsky Date: Mon, 17 Jan 2011 13:44:54 +0000 (+0000) Subject: Fixed compiler warning X-Git-Tag: php-5.3.6RC1~112 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=df5f8c91ce0694fe60493f8d76386393480f92d8;p=php Fixed compiler warning --- diff --git a/ext/standard/php_fopen_wrapper.c b/ext/standard/php_fopen_wrapper.c index 3c054e2d28..7e30a8ea46 100644 --- a/ext/standard/php_fopen_wrapper.c +++ b/ext/standard/php_fopen_wrapper.c @@ -286,7 +286,7 @@ php_stream * php_stream_url_wrap_php(php_stream_wrapper *wrapper, char *path, ch fd = dup(fildes_ori); if (fd == -1) { php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, - "Error duping file descriptor %d; possibly it doesn't exist: " + "Error duping file descriptor %ld; possibly it doesn't exist: " "[%d]: %s", fildes_ori, errno, strerror(errno)); return NULL; }