Sfoglia il codice sorgente

Use wgetnstr() instead of getnstr() because IRIX lacks the latter

master
sin 9 anni fa
parent
commit
9b47bfd9aa
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      noice.c

+ 1
- 1
noice.c Vedi File

@@ -332,7 +332,7 @@ readln(void)
echo();
curs_set(TRUE);
memset(ln, 0, sizeof(ln));
getnstr(ln, sizeof(ln) - 1);
wgetnstr(stdscr, ln, sizeof(ln) - 1);
noecho();
curs_set(FALSE);
return strlen(ln) ? strdup(ln) : NULL;


Loading…
Annulla
Salva