From: Ilia Alshanetsky Date: Thu, 1 Jun 2006 22:42:53 +0000 (+0000) Subject: MFB: fixed compiler warning X-Git-Tag: BEFORE_NEW_OUTPUT_API~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c270a8e627fb5159eff18b9c5317808e5e358df8;p=php MFB: fixed compiler warning --- diff --git a/ext/standard/filters.c b/ext/standard/filters.c index a42c48fc4f..ea58547f8d 100644 --- a/ext/standard/filters.c +++ b/ext/standard/filters.c @@ -1961,7 +1961,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;