From bfce7251f809c5e47b01cf5e949356e77308f096 Mon Sep 17 00:00:00 2001 From: Patrick Gaskin Date: Fri, 1 May 2020 20:35:37 -0400 Subject: [PATCH] Decreased the failsafe timeout (closes #2) It was originally higher to make it easier to test, but it is too easy to trigger by mistake when launching things immediately after booting. --- src/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init.c b/src/init.c index 96d8e11..aff0906 100644 --- a/src/init.c +++ b/src/init.c @@ -75,7 +75,7 @@ __attribute__((constructor)) void nm_init() { stop_fs: NM_LOG("init: destroying failsafe"); - nm_failsafe_destroy(fs, 20); + nm_failsafe_destroy(fs, 10); stop: NM_LOG("init: done");