commit dd7568a78b47756ba690be540f8960d5771eac2b
parent c8e4fd1a969b31329efd3f28a37d3281f339f83f
Author: Paul <paul@claws-mail.org>
Date: Thu, 11 Aug 2016 12:33:44 +0100
add missing semi-colon
spotted and patched by Ralf Bormann <ralf.bormann@cs.uni-dortmund.de>
Diffstat:
3 files changed, 4 insertions(+), 1 deletion(-)
diff --git 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
diff --git a/src/gtk/authors.h b/src/gtk/authors.h
@@ -99,6 +99,7 @@ static char *CONTRIBS_LIST[] = {
"Blatinox",
"Hanno Boeck",
"Pavlo Bohmat",
+"Ralf Bormann",
"H. Merijn Brand",
"Eugene Brevdo",
"Sean Buckheister",
diff --git a/src/imap_gtk.c b/src/imap_gtk.c
@@ -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);
}