aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nnn.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nnn.c b/src/nnn.c
index 63b6c03..cec4b7c 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -712,20 +712,20 @@ static void printinfoln(const char *str)
static int get_input(const char *prompt)
{
- int r = KEY_RESIZE;
+ int r;
if (prompt)
printprompt(prompt);
cleartimeout();
#ifdef KEY_RESIZE
- while (r == KEY_RESIZE) {
+ do {
r = getch();
if (r == KEY_RESIZE && prompt) {
clearoldprompt();
xlines = LINES;
printprompt(prompt);
}
- };
+ } while (r == KEY_RESIZE);
#else
r = getch();
#endif