summaryrefslogtreecommitdiff
path: root/src/gif.c
diff options
context:
space:
mode:
authorcorvid <devnull@localhost>2014-12-21 21:27:57 +0000
committercorvid <devnull@localhost>2014-12-21 21:27:57 +0000
commita614ea631d34d5c6273bfdaeea6a79ce2eb366a1 (patch)
treef0cc568eadbc5b50c53ea9489f30c23e0f3960fb /src/gif.c
parent5eb74aa36fd7d0448ac740c2a35fd6d485c27aba (diff)
more (and indentation in one spot)
Diffstat (limited to 'src/gif.c')
-rw-r--r--src/gif.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gif.c b/src/gif.c
index 34424d33..adc9f49d 100644
--- a/src/gif.c
+++ b/src/gif.c
@@ -800,8 +800,8 @@ static size_t Gif_do_img_desc(DilloGif *gif, void *Buf,
if (bsize < 10)
return 0;
- gif->Width = LM_to_uint(buf[4], buf[5]);
- gif->Height = LM_to_uint(buf[6], buf[7]);
+ gif->Width = LM_to_uint(buf[4], buf[5]);
+ gif->Height = LM_to_uint(buf[6], buf[7]);
/* check max image size */
if (gif->Width <= 0 || gif->Height <= 0 ||