fix bug #4023, 'Fix some small issues'
[claws.git] / src / mbox.c
index e2c51ccc66a566bcbbaebc70ece48cc16ccfa542..9929a29cf243cdec4c4a6a4b7688a5219a545994 100644 (file)
@@ -174,7 +174,7 @@ gint proc_mbox(FolderItem *dest, const gchar *mbox, gboolean apply_filter,
                        /* From separator or quoted From */
                        offset = 0;
                        /* detect leading '>' char(s) */
-                       while ((buf[offset] == '>')) {
+                       while (buf[offset] == '>') {
                                offset++;
                        }
                        if (!strncmp(buf+offset, "From ", 5)) {
@@ -605,7 +605,7 @@ gint export_list_to_mbox(GSList *mlist, const gchar *mbox)
 
                        offset = 0;
                        /* detect leading '>' char(s) */
-                       while ((buf[offset] == '>')) {
+                       while (buf[offset] == '>') {
                                offset++;
                        }
                        if (!strncmp(buf+offset, "From ", 5)) {