Fix --pause-on-exit parsing

The function incorrectly returned `false` instead of a valid (and
expected) enum value.
pr4373
Romain Vimont 8 months ago
parent 8e7b041f35
commit 9fdb882509

@ -2261,7 +2261,7 @@ sc_get_pause_on_exit(int argc, char *argv[]) {
} }
} }
return false; return SC_PAUSE_ON_EXIT_FALSE;
} }
bool bool

Loading…
Cancel
Save