MFB: fixed compiler warning

This commit is contained in:
Ilia Alshanetsky 2006-06-01 22:42:53 +00:00
parent 1ba7a6812c
commit c270a8e627

View File

@ -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;