ソースを参照

Fix compilation failure on Trusty

master
Arun Prakash Jana 5年前
コミット
89f0ba8fb4
この署名に対応する既知のキーがデータベースに存在しません GPGキー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) {


読み込み中…
キャンセル
保存