mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Fix build break
This commit is contained in:
parent
1253e462b8
commit
83615dc72b
|
@ -4222,7 +4222,8 @@ int main(int argc, char *argv[])
|
||||||
cfg.restrict0b = 1;
|
cfg.restrict0b = 1;
|
||||||
|
|
||||||
/* Ignore/handle certain signals */
|
/* Ignore/handle certain signals */
|
||||||
struct sigaction act = {0};
|
struct sigaction act;
|
||||||
|
memset(&act, 0, sizeof(act));
|
||||||
act.sa_sigaction = &sigint_handler;
|
act.sa_sigaction = &sigint_handler;
|
||||||
act.sa_flags = SA_SIGINFO;
|
act.sa_flags = SA_SIGINFO;
|
||||||
if (sigaction(SIGINT, &act, NULL) < 0) {
|
if (sigaction(SIGINT, &act, NULL) < 0) {
|
||||||
|
|
Loading…
Reference in a new issue