aboutsummaryrefslogtreecommitdiffstats
path: root/systray_linux.c
diff options
context:
space:
mode:
authorFlorian Engel2016-04-04 20:42:36 +0200
committerFlorian Engel2016-04-04 20:42:36 +0200
commita52683f6d30d5b0d06da5a194b49c141025f9a61 (patch)
tree0201ca970cf771989e245415cd9f61695dcfb47a /systray_linux.c
parent8e63b37ef27d94f6db79c4ffb941608e8f0dc2f9 (diff)
downloadsystray-a52683f6d30d5b0d06da5a194b49c141025f9a61.tar.bz2
Fixes wrong return type.
Diffstat (limited to 'systray_linux.c')
-rw-r--r--systray_linux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/systray_linux.c b/systray_linux.c
index 56c6229..72694e1 100644
--- a/systray_linux.c
+++ b/systray_linux.c
@@ -34,7 +34,7 @@ int nativeLoop(void) {
global_temp_icon_file_names = g_array_new(TRUE, FALSE, sizeof(char*));
systray_ready();
gtk_main();
- return;
+ return EXIT_SUCCESS;
}
// runs in main thread, should always return FALSE to prevent gtk to execute it again