Przeglądaj źródła

No need for strlen()

Thanks Hiltjo!
master
sin 9 lat temu
rodzic
commit
d1d086d91e
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      noice.c

+ 1
- 1
noice.c Wyświetl plik

@@ -344,7 +344,7 @@ readln(void)
noecho();
curs_set(FALSE);
timeout(1000);
return strlen(ln) ? strdup(ln) : NULL;
return ln[0] ? strdup(ln) : NULL;
}

/*


Ładowanie…
Anuluj
Zapisz