diff options
| author | Florian Engel | 2016-04-04 20:42:36 +0200 |
|---|---|---|
| committer | Florian Engel | 2016-04-04 20:42:36 +0200 |
| commit | a52683f6d30d5b0d06da5a194b49c141025f9a61 (patch) | |
| tree | 0201ca970cf771989e245415cd9f61695dcfb47a | |
| parent | 8e63b37ef27d94f6db79c4ffb941608e8f0dc2f9 (diff) | |
| download | systray-a52683f6d30d5b0d06da5a194b49c141025f9a61.tar.bz2 | |
Fixes wrong return type.
| -rw-r--r-- | systray_linux.c | 2 |
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 |
