nlopess         Mon Sep  4 19:16:21 2006 UTC

  Modified files:              
    /php-src/ext/standard       filters.c 
  Log:
  MFB: fix gcc warning
  
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/filters.c?r1=1.57&r2=1.58&diff_format=u
Index: php-src/ext/standard/filters.c
diff -u php-src/ext/standard/filters.c:1.57 php-src/ext/standard/filters.c:1.58
--- php-src/ext/standard/filters.c:1.57 Thu Jun  1 22:42:53 2006
+++ php-src/ext/standard/filters.c      Mon Sep  4 19:16:21 2006
@@ -20,7 +20,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: filters.c,v 1.57 2006/06/01 22:42:53 iliaa Exp $ */
+/* $Id: filters.c,v 1.58 2006/09/04 19:16:21 nlopess Exp $ */
 
 #include "php.h"
 #include "php_globals.h"
@@ -1961,7 +1961,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