diff options
Diffstat (limited to 'apps/plugins/imageviewer/gif/gif.c')
-rw-r--r-- | apps/plugins/imageviewer/gif/gif.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/plugins/imageviewer/gif/gif.c b/apps/plugins/imageviewer/gif/gif.c index 0521c29e3a..61ff1a6146 100644 --- a/apps/plugins/imageviewer/gif/gif.c +++ b/apps/plugins/imageviewer/gif/gif.c | |||
@@ -76,8 +76,11 @@ static int img_mem(int ds) | |||
76 | } | 76 | } |
77 | 77 | ||
78 | static int load_image(char *filename, struct image_info *info, | 78 | static int load_image(char *filename, struct image_info *info, |
79 | unsigned char *buf, ssize_t *buf_size) | 79 | unsigned char *buf, ssize_t *buf_size, |
80 | int offset, int filesize) | ||
80 | { | 81 | { |
82 | (void)offset;(void)filesize; | ||
83 | |||
81 | int w, h; | 84 | int w, h; |
82 | long time = 0; /* measured ticks */ | 85 | long time = 0; /* measured ticks */ |
83 | struct gif_decoder *p_decoder = &decoder; | 86 | struct gif_decoder *p_decoder = &decoder; |