From 8fa3cd95641e9138406d651b0734ee84f1da60d2 Mon Sep 17 00:00:00 2001 From: Adrian Johnson Date: Wed, 26 Nov 2008 06:40:47 +1030 Subject: [PATCH] Change uint to uint32_t --- src/cairo-image-info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cairo-image-info.c b/src/cairo-image-info.c index f84bcaf04..8fc770550 100644 --- a/src/cairo-image-info.c +++ b/src/cairo-image-info.c @@ -179,7 +179,7 @@ _jpx_get_box_contents (const unsigned char *p) static cairo_bool_t _jpx_match_box (const unsigned char *p, const unsigned char *end, uint32_t type) { - uint length; + uint32_t length; if (p + 8 < end) { length = _get_be32 (p);