From 9fdb882509ad7c7b67f8d8ad68ce702ea7746f28 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Tue, 24 Oct 2023 22:53:41 +0200 Subject: [PATCH] Fix --pause-on-exit parsing The function incorrectly returned `false` instead of a valid (and expected) enum value. --- app/src/cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/cli.c b/app/src/cli.c index d334107a..b78c84fd 100644 --- a/app/src/cli.c +++ b/app/src/cli.c @@ -2261,7 +2261,7 @@ sc_get_pause_on_exit(int argc, char *argv[]) { } } - return false; + return SC_PAUSE_ON_EXIT_FALSE; } bool