commit c8f34c6fc5fc080f0cb26ccc4f45bbfc0d331d69 parent db7fb751a862428391345f0cc5d41c3524451635 Author: Jonathan Boeing <jonathan@claws-mail.org> Date: Sat, 20 Nov 2021 02:48:54 -0700 Fix clang -Wmisleading-indentation warning Diffstat:
| M | src/toolbar.c | | | 12 | +++++------- |
1 file changed, 5 insertions(+), 7 deletions(-)
diff --git a/src/toolbar.c b/src/toolbar.c @@ -2671,13 +2671,11 @@ void toolbar_item_destroy(ToolbarItem *item) { cm_return_if_fail(item != NULL); - if (item) { - if (item->file) \ - g_free(item->file); \ - if (item->text) \ - g_free(item->text); \ - g_free(item);\ - } + if (item->file) + g_free(item->file); + if (item->text) + g_free(item->text); + g_free(item); } void toolbar_update(ToolbarType type, gpointer data)