Readd a return which was removed as dead code a while ago. icc may

* glib/gmain.c (child_watch_helper_thread): Readd a
        return which was removed as dead code a while ago.
        icc may consider it dead, but gcc doesn't like non-void
        functions without a return...  (#354707)
This commit is contained in:
Matthias Clasen 2006-12-19 02:49:39 +00:00
parent b8bcb2b839
commit 2d7fa2dd18
2 changed files with 7 additions and 0 deletions

View File

@ -1,5 +1,10 @@
2006-12-18 Matthias Clasen <mclasen@redhat.com>
* glib/gmain.c (child_watch_helper_thread): Readd a
return which was removed as dead code a while ago.
icc may consider it dead, but gcc doesn't like non-void
functions without a return... (#354707)
* tests/Makefile.am: Try a different fix for bug 346373.
2006-12-18 Matthias Clasen <mclasen@redhat.com>

View File

@ -3865,6 +3865,8 @@ child_watch_helper_thread (gpointer data)
}
G_UNLOCK (main_context_list);
}
return NULL;
}
static void