From caeaf7693076a404e6f7f68ea13eb63ef58e8b37 Mon Sep 17 00:00:00 2001 From: Dave Chapman Date: Wed, 1 Oct 2008 19:54:12 +0000 Subject: [PATCH] Correct the content of an error message (thanks to Jens for spotting) and fix a warning git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18678 a1c6a512-1295-4272-9138-f99709370657 --- utils/AMS/hacking/mkamsboot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/AMS/hacking/mkamsboot.c b/utils/AMS/hacking/mkamsboot.c index 0aad8e8e35..47738ebdde 100644 --- a/utils/AMS/hacking/mkamsboot.c +++ b/utils/AMS/hacking/mkamsboot.c @@ -200,12 +200,12 @@ int main(int argc, char* argv[]) } if (uclheader[12] != 0x2e) { - fprintf(stderr,"[ERR] Unsupported UCL encryption format (0x%02x) - only 0x2e supported.\n",uclheader[12]); + fprintf(stderr,"[ERR] Unsupported UCL compression format (0x%02x) - only 0x2e supported.\n",uclheader[12]); return 1; } ucl_size = get_uint32be(&uclheader[22]) + 8; - if (ucl_size + 26 > filesize(fducl)) { + if (ucl_size + 26 > (unsigned)filesize(fducl)) { fprintf(stderr, "[ERR] Size mismatch in UCL file\n"); return 1; }