From 127569910827c25ad7ae1ea569f02c7a3abb19af Mon Sep 17 00:00:00 2001 From: Mikhail Kulko Date: Wed, 24 May 2023 16:39:48 +0600 Subject: [PATCH] change #if 0 to debug() --- bubblewrap.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bubblewrap.c b/bubblewrap.c index d346ef42..c94af19e 100644 --- a/bubblewrap.c +++ b/bubblewrap.c @@ -2690,10 +2690,9 @@ main (int argc, usage (EXIT_FAILURE, stderr); parse_args (&argc, (const char ***) &argv); -#if 1 + if (!opt_new_session_set) debug ("No new terminal session creation behaviour specified. Please specify it explicitly with either --new-session or --no-new-session. Will default to --no-new-session."); -#endif /* suck the args into a cleanup_free variable to control their lifecycle */ args_data = opt_args_data;