Browse Source

Use do-while instead of while

master
Arun Prakash Jana 4 years ago
parent
commit
feec63ebb3
No known key found for this signature in database GPG Key ID: A75979F35C080412
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/nnn.c

+ 3
- 3
src/nnn.c View File

@@ -712,20 +712,20 @@ static void printinfoln(const char *str)


static int get_input(const char *prompt) static int get_input(const char *prompt)
{ {
int r = KEY_RESIZE;
int r;


if (prompt) if (prompt)
printprompt(prompt); printprompt(prompt);
cleartimeout(); cleartimeout();
#ifdef KEY_RESIZE #ifdef KEY_RESIZE
while (r == KEY_RESIZE) {
do {
r = getch(); r = getch();
if (r == KEY_RESIZE && prompt) { if (r == KEY_RESIZE && prompt) {
clearoldprompt(); clearoldprompt();
xlines = LINES; xlines = LINES;
printprompt(prompt); printprompt(prompt);
} }
};
} while (r == KEY_RESIZE);
#else #else
r = getch(); r = getch();
#endif #endif


Loading…
Cancel
Save