diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2023-05-07 18:36:15 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2023-05-11 15:18:02 -0700 |
commit | f4e29c7923960d3cc6af73b3c66498cf9b2d6f38 (patch) | |
tree | f90718fce868d7d1d8404d7a0d0da4b05523d94b | |
parent | cf8c5c53a8831fa7c7e0c7d2fb929b76708d66e1 (diff) |
main: quote shown flags/args
Preparatory commit for recursive settings going cray-cray with
escaping. At least single-quote these so it's directly
copy-and-pasteable into a shell prompt.
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -279,7 +279,7 @@ static int print_setup_as_args(setup_t *setup, int wait) if (!video_args) goto _out_module; - r = printf("\nConfigured settings as flags:\n --seed=%s --module=%s --video=%s\n", + r = printf("\nConfigured settings as flags:\n --seed=%s '--module=%s' '--video=%s'\n", seed_arg, module_args, video_args); |