From a247b5978740016349cbcb33ae81e46eebf4ea0a Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Wed, 10 Feb 2021 04:48:51 +0100 Subject: [PATCH] gif_deanimate(): Minor style fixes --- deanimate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deanimate.c b/deanimate.c index fd088925..ae13d89c 100644 --- a/deanimate.c +++ b/deanimate.c @@ -383,9 +383,9 @@ int gif_deanimate(struct binbuffer *src, struct binbuffer *dst, int get_first_im * Parse the GIF block by block and copy the relevant * parts to dst */ - while(src->offset < src->size) + while (src->offset < src->size) { - switch(buf_getbyte(src, 0)) + switch (buf_getbyte(src, 0)) { /* * End-of-GIF Marker: Append current image if we got -- 2.39.2