From f4e29c7923960d3cc6af73b3c66498cf9b2d6f38 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Sun, 7 May 2023 18:36:15 -0700 Subject: 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. --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 54abe18..2d28700 100644 --- a/src/main.c +++ b/src/main.c @@ -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); -- cgit v1.2.1