summaryrefslogtreecommitdiff
path: root/src/gif.c
diff options
context:
space:
mode:
authorcorvid <corvid@lavabit.com>2011-04-04 17:56:15 +0000
committercorvid <corvid@lavabit.com>2011-04-04 17:56:15 +0000
commit9572807453da1e92657df7b88eb8a5e0f578d21c (patch)
tree626f378dd4594fcd6b2d7b4dac4274051417a6e5 /src/gif.c
parentda2887c4a786ffdb97ce89fa257ef9818b53285c (diff)
clearer MSG for suspicious image size
I saw a MSG with size 0x[something], and of course I thought it was complaining that a size was given in hex notation.
Diffstat (limited to 'src/gif.c')
-rw-r--r--src/gif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gif.c b/src/gif.c
index 50c68960..b5486c46 100644
--- a/src/gif.c
+++ b/src/gif.c
@@ -804,7 +804,7 @@ static size_t Gif_do_img_desc(DilloGif *gif, void *Buf,
/* check max image size */
if (gif->Width <= 0 || gif->Height <= 0 ||
gif->Width > IMAGE_MAX_AREA / gif->Height) {
- MSG("Gif_do_img_desc: suspicious image size request %ux%u\n",
+ MSG("Gif_do_img_desc: suspicious image size request %u x %u\n",
gif->Width, gif->Height);
gif->state = 999;
return 0;