diff options
| author | LE ROUX Thomas | 2018-01-09 12:10:06 +0100 |
|---|---|---|
| committer | GitHub | 2018-01-09 12:10:06 +0100 |
| commit | e96bc9b1eed8392019ee536ec5e0215ddcb35865 (patch) | |
| tree | 1631c855c0c2fabe4ba0125e319a692a8197febe | |
| parent | fc8e01480deb4dc92e7f13151536a9678520ff42 (diff) | |
| download | systray-e96bc9b1eed8392019ee536ec5e0215ddcb35865.tar.bz2 | |
fix: linux compilation warning
Tested on Archlinux
Close #24
| -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 3a9a039..69b90be 100644 --- a/systray_linux.c +++ b/systray_linux.c @@ -35,7 +35,7 @@ int nativeLoop(void) { systray_ready(); gtk_main(); systray_on_exit(); - return; + return 0; } // runs in main thread, should always return FALSE to prevent gtk to execute it again |
