From: Marcus Boerger Date: Sat, 1 Feb 2003 23:38:29 +0000 (+0000) Subject: avoid warnings X-Git-Tag: RELEASE_0_5~1327 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3e675c1cf4e0d9d465ee0c114583f6c146534f17;p=php avoid warnings --- diff --git a/ext/standard/image.c b/ext/standard/image.c index 9d810193f9..a5a5d7c53c 100644 --- a/ext/standard/image.c +++ b/ext/standard/image.c @@ -962,7 +962,8 @@ static int php_get_xbm(php_stream *stream, struct gfxinfo **result TSRMLS_DC) 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;