From 29c6b1456e8bb46fbee0e8ea962553cb9f1230a3 Mon Sep 17 00:00:00 2001 From: N-R-K Date: Wed, 27 Apr 2022 01:25:11 +0000 Subject: code-style: reduce some unnecessary if-elses (#261) also change the condition inside img_frame_animate() to check for positive value rather than comparing against 0. --- commands.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'commands.c') diff --git a/commands.c b/commands.c index 19d2abe..5f523ba 100644 --- a/commands.c +++ b/commands.c @@ -273,10 +273,7 @@ bool ci_navigate(arg_t n) if (prefix > 0) n *= prefix; n += fileidx; - if (n < 0) - n = 0; - if (n >= filecnt) - n = filecnt - 1; + n = MAX(0, MIN(n, filecnt - 1)); if (n != fileidx) { load_image(n); -- cgit v1.2.3-54-g00ecf