From 6eca89aebcab2093d8ed987564e1bdf8f0c6cb3f Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sun, 9 Aug 2015 11:56:38 +0100 Subject: [PATCH] Fix compile failure. I'm sure I removed that 'return 0' at some point! But I must have made a git error which excluded it from the commit I actually pushed, ahem. --- unix/gtkwin.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/unix/gtkwin.c b/unix/gtkwin.c index 9a3f91f1..290a851f 100644 --- a/unix/gtkwin.c +++ b/unix/gtkwin.c @@ -1497,8 +1497,6 @@ static void inst_post_main(struct gui_data *inst) * when we get out of the next one. */ request_post_main(inst); } - - return 0; } static gint idle_toplevel_callback_func(gpointer data)