Fix --pause-on-exit parsing

The function incorrectly returned `false` instead of a valid (and
expected) enum value.
This commit is contained in:
Romain Vimont 2023-10-24 22:53:41 +02:00
parent 8e7b041f35
commit 9fdb882509

View file

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