Ver código fonte

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

master
sin 9 anos atrás
pai
commit
9b47bfd9aa
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      noice.c

+ 1
- 1
noice.c Ver arquivo

@@ -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;


Carregando…
Cancelar
Salvar