From 296ca2d57e83a22af6e0f56d2283d0a2f0e807bb Mon Sep 17 00:00:00 2001 From: Per Hedbor <ph@opera.com> Date: Mon, 9 Oct 2000 00:39:54 +0200 Subject: [PATCH] Avoid warning Rev: src/modules/Image/encodings/xcf.c:1.23 --- src/modules/Image/encodings/xcf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/Image/encodings/xcf.c b/src/modules/Image/encodings/xcf.c index 6a30262f38..b88e6d157c 100644 --- a/src/modules/Image/encodings/xcf.c +++ b/src/modules/Image/encodings/xcf.c @@ -1,5 +1,5 @@ #include "global.h" -RCSID("$Id: xcf.c,v 1.22 2000/10/08 21:12:45 per Exp $"); +RCSID("$Id: xcf.c,v 1.23 2000/10/08 22:39:54 per Exp $"); #include "image_machine.h" @@ -1380,7 +1380,7 @@ void image_xcf_f__decode_tiles( INT32 args ) } x += TILE_WIDTH; - if( x >= rxs ) + if( (int)x >= (int)rxs ) { x = 0; y += TILE_HEIGHT; -- GitLab