瀏覽代碼

Fix compilation failure on Trusty

master
Arun Prakash Jana 6 年之前
父節點
當前提交
89f0ba8fb4
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: A75979F35C080412
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      src/nnn.c

+ 2
- 1
src/nnn.c 查看文件

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

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


Loading…
取消
儲存