Procházet zdrojové kódy

Shorten error messages

master
Arun Prakash Jana před 6 roky
rodič
revize
78f544c41d
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: A75979F35C080412
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. +2
    -2
      nnn.c

+ 2
- 2
nnn.c Zobrazit soubor

@@ -2936,13 +2936,13 @@ main(int argc, char *argv[])
/* Initialize inotify */
inotify_fd = inotify_init1(IN_NONBLOCK);
if (inotify_fd < 0) {
fprintf(stderr, "Cannot initialize inotify: %s\n", strerror(errno));
fprintf(stderr, "inotify init! %s\n", strerror(errno));
exit(1);
}
#elif defined(BSD_KQUEUE)
kq = kqueue();
if (kq < 0) {
fprintf(stderr, "Cannot initialize kqueue: %s\n", strerror(errno));
fprintf(stderr, "kqueue init! %s\n", strerror(errno));
exit(1);
}



Načítá se…
Zrušit
Uložit