Fix clang -Wmisleading-indentation warning
[claws.git] / src / toolbar.c
index acd8a75e1263acc923d4411bf6153d4a7b39c725..cd5a294035737670a8722c680b728bcf1efdfa5f 100644 (file)
@@ -2672,13 +2672,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)