talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 68a5fe8e484c636ed13a4e885139af701d1f1adb
parent 06019f2e459a6405fa4ab375d6a3260e23398472
Author: wwp <subscript@free.fr>
Date:   Thu, 30 Sep 2021 11:16:52 +0200

Fix CID 1491361: logically dead code (ternary operator).

Diffstat:
Msrc/common/utils.c | 2+-
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);