Przeglądaj źródła

Fix build break

master
Arun Prakash Jana 6 lat temu
rodzic
commit
83615dc72b
Nie znaleziono w bazie danych klucza dla tego podpisu ID klucza GPG: A75979F35C080412
1 zmienionych plików z 2 dodań i 1 usunięć
  1. +2
    -1
      src/nnn.c

+ 2
- 1
src/nnn.c Wyświetl plik

@@ -4222,7 +4222,8 @@ int main(int argc, char *argv[])
cfg.restrict0b = 1;

/* Ignore/handle certain signals */
struct sigaction act = {0};
struct sigaction act;
memset(&act, 0, sizeof(act));
act.sa_sigaction = &sigint_handler;
act.sa_flags = SA_SIGINFO;
if (sigaction(SIGINT, &act, NULL) < 0) {


Ładowanie…
Anuluj
Zapisz