fix curses' create_nhmenu() warning

The extra flags argument to create_nhmenu() wasn't propagated to
anywhere useful.  It still doesn't do anything yet.
This commit is contained in:
PatR
2020-02-25 16:18:58 -08:00
parent 19df82971d
commit cff63b5b4c
6 changed files with 9 additions and 6 deletions

View File

@@ -671,7 +671,7 @@ curses_view_file(const char *filename, boolean must_exist)
}
wid = curses_get_wid(NHW_MENU);
curses_create_nhmenu(wid);
curses_create_nhmenu(wid, 0UL);
Id = cg.zeroany;
while (dlb_fgets(buf, BUFSZ, fp) != NULL) {