add missing semi-colon
authorPaul <paul@claws-mail.org>
Thu, 11 Aug 2016 11:33:44 +0000 (12:33 +0100)
committerPaul <paul@claws-mail.org>
Thu, 11 Aug 2016 11:33:44 +0000 (12:33 +0100)
spotted and patched by Ralf Bormann <ralf.bormann@cs.uni-dortmund.de>

AUTHORS
src/gtk/authors.h
src/imap_gtk.c

diff --git a/AUTHORS b/AUTHORS
index e55f73b7a968e7583b8cb894176fac6d033332b8..0cab1a8e0f646137497f66c6b650030afb0adadd 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -308,3 +308,4 @@ contributors (in addition to the above; based on Changelog)
        Andy Balaam
        Hanno Boeck
        Ben Hutchings
+       Ralf Bormann
index 5f2f09de18ac81aa4249d4cdbfa3ef978c8e76fc..06d0c2d7bb1475ecd54a5241c4ba3689111f6c4d 100644 (file)
@@ -99,6 +99,7 @@ static char *CONTRIBS_LIST[] = {
 "Blatinox",
 "Hanno Boeck",
 "Pavlo Bohmat",
+"Ralf Bormann",
 "H. Merijn Brand",
 "Eugene Brevdo",
 "Sean Buckheister",
index b304ef284fb15822f15727feeb129b8e5af42a4f..11f2d1ff2effb3863dd0cc9be5cde280bf81633a 100644 (file)
@@ -626,6 +626,7 @@ static void download_cb(GtkAction *action, gpointer data)
        FolderView *folderview = (FolderView *)data;
        FolderItem *item;
 
-       if ((item = folderview_get_selected_item(folderview)) == NULL) return
+       if ((item = folderview_get_selected_item(folderview)) == NULL)
+               return;
        imap_gtk_synchronise(item, 0);
 }