helly           Sat Feb  1 18:38:29 2003 EDT

  Modified files:              
    /php4/ext/standard  image.c 
  Log:
  avoid warnings
  
Index: php4/ext/standard/image.c
diff -u php4/ext/standard/image.c:1.87 php4/ext/standard/image.c:1.88
--- php4/ext/standard/image.c:1.87      Sat Feb  1 18:14:13 2003
+++ php4/ext/standard/image.c   Sat Feb  1 18:38:29 2003
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: image.c,v 1.87 2003/02/01 23:14:13 helly Exp $ */
+/* $Id: image.c,v 1.88 2003/02/01 23:38:29 helly Exp $ */
 
 #include "php.h"
 #include <stdio.h>
@@ -962,7 +962,8 @@
     char fline[MAX_XBM_LINE_SIZE];
     char iname[MAX_XBM_LINE_SIZE];
     char *type;
-    int value, width = 0, height = 0;
+    int value;
+    unsigned int width = 0, height = 0;
 
        if (result) {
                *result = NULL;



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

Reply via email to