diff options
| author | joesis | 2018-01-17 18:27:37 -0800 | 
|---|---|---|
| committer | GitHub | 2018-01-17 18:27:37 -0800 | 
| commit | fe4b1c6bb216a485a73414ce55047ec7ce3a9766 (patch) | |
| tree | 1631c855c0c2fabe4ba0125e319a692a8197febe /systray_linux.c | |
| parent | fc8e01480deb4dc92e7f13151536a9678520ff42 (diff) | |
| parent | e96bc9b1eed8392019ee536ec5e0215ddcb35865 (diff) | |
| download | systray-fe4b1c6bb216a485a73414ce55047ec7ce3a9766.tar.bz2 | |
Merge pull request #36 from novln/patch-1
fix: linux compilation warning
Diffstat (limited to 'systray_linux.c')
| -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 | 
