From 513b4f24a69ae53ee68053e50c701fe93b5593e4 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Fri, 14 May 2021 12:35:43 +0530 Subject: [PATCH] Optimize loop comparison --- src/nnn.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/nnn.c b/src/nnn.c index 6e772581..b0dae5b7 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -5891,8 +5891,10 @@ static void redraw(char *path) g_state.dircolor = 1; } + onscreen = MIN(onscreen + curscroll, ndents); + /* Print listing */ - for (i = curscroll; i < ndents && i < curscroll + onscreen; ++i) { + for (i = curscroll; i < onscreen; ++i) { move(++j, 0); printent(&pdents[i], ncols, i == cur); }