From: Ilia Alshanetsky Date: Thu, 1 Jun 2006 22:42:22 +0000 (+0000) Subject: Fixed compiler warning X-Git-Tag: php-5.2.0RC1~385 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5b5e7a4de9c8445bd564b2e2414d9dc6c86032b8;p=php Fixed compiler warning --- diff --git a/ext/standard/filters.c b/ext/standard/filters.c index 704b42fe6b..f2c6760a52 100644 --- a/ext/standard/filters.c +++ b/ext/standard/filters.c @@ -1880,7 +1880,7 @@ static php_stream_filter *consumed_filter_create(const char *filtername, zval *f /* Create this filter */ data = pecalloc(1, sizeof(php_consumed_filter_data), persistent); if (!data) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed allocating %d bytes.", sizeof(php_consumed_filter_data)); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed allocating %ld bytes.", sizeof(php_consumed_filter_data)); return NULL; } data->persistent = persistent;