nlopess         Mon Sep  4 19:15:00 2006 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/ext/standard       filters.c 
  Log:
  fix gcc warning
  
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/filters.c?r1=1.44.2.6.2.2&r2=1.44.2.6.2.3&diff_format=u
Index: php-src/ext/standard/filters.c
diff -u php-src/ext/standard/filters.c:1.44.2.6.2.2 
php-src/ext/standard/filters.c:1.44.2.6.2.3
--- php-src/ext/standard/filters.c:1.44.2.6.2.2 Thu Jun  1 22:42:22 2006
+++ php-src/ext/standard/filters.c      Mon Sep  4 19:14:59 2006
@@ -20,7 +20,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: filters.c,v 1.44.2.6.2.2 2006/06/01 22:42:22 iliaa Exp $ */
+/* $Id: filters.c,v 1.44.2.6.2.3 2006/09/04 19:14:59 nlopess Exp $ */
 
 #include "php.h"
 #include "php_globals.h"
@@ -1880,7 +1880,7 @@
        /* Create this filter */
        data = pecalloc(1, sizeof(php_consumed_filter_data), persistent);
        if (!data) {
-               php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed allocating 
%ld bytes.", sizeof(php_consumed_filter_data));
+               php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed allocating 
%zd bytes.", sizeof(php_consumed_filter_data));
                return NULL;
        }
        data->persistent = persistent;

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to