commit 9caee5ad89c1ba99497597114812b2b7982e0e7b
parent 0da71bb6bac180dc81dd553156a02768b18a2cff
Author: wwp <subscript@free.fr>
Date: Thu, 30 Sep 2021 11:16:52 +0200
Fix CID 1491361: logically dead code (ternary operator).
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/common/utils.c b/src/common/utils.c
@@ -2629,7 +2629,7 @@ gint execute_command_line(const gchar *cmdline, gboolean async,
cm_return_val_if_fail(cmdline != NULL, -1);
- debug_print("execute_command_line(): executing: %s\n", cmdline?cmdline:"(null)");
+ debug_print("execute_command_line(): executing: %s\n", cmdline);
argv = strsplit_with_quote(cmdline, " ", 0);