X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Frfxswf.c;h=2b46f53e412da1cdd93462aeabfb45ec429f41e6;hb=195da3fa2edfd23e27836c18a34b513508319f59;hp=18b2c569816047eb7c1270d1a63306a702f05537;hpb=fc815311aa1bd67877b404493838dfd85a86f596;p=swftools.git diff --git a/lib/rfxswf.c b/lib/rfxswf.c index 18b2c56..2b46f53 100644 --- a/lib/rfxswf.c +++ b/lib/rfxswf.c @@ -93,7 +93,7 @@ char* swf_GetString(TAG*t) U8 swf_GetU8(TAG * t) { swf_ResetReadBits(t); #ifdef DEBUG_RFXSWF - if (t->pos>=t->len) + if ((int)t->pos>=(int)t->len) { fprintf(stderr,"GetU8() out of bounds: TagID = %i\n",t->id); return 0; } @@ -105,7 +105,7 @@ U16 swf_GetU16(TAG * t) { U16 res; swf_ResetReadBits(t); #ifdef DEBUG_RFXSWF - if (t->pos>(t->len-2)) + if ((int)t->pos>((int)t->len-2)) { fprintf(stderr,"GetU16() out of bounds: TagID = %i\n",t->id); return 0; } @@ -119,7 +119,7 @@ U32 swf_GetU32(TAG * t) { U32 res; swf_ResetReadBits(t); #ifdef DEBUG_RFXSWF - if (t->pos>(t->len-4)) + if ((int)t->pos>((int)t->len-4)) { fprintf(stderr,"GetU32() out of bounds: TagID = %i\n",t->id); return 0; }