diff options
| author | fffw | 2016-04-05 05:44:34 +0800 | 
|---|---|---|
| committer | fffw | 2016-04-05 05:44:34 +0800 | 
| commit | d4e9a9f70a92790dbb0d1cee3569282d6af0cf31 (patch) | |
| tree | 0201ca970cf771989e245415cd9f61695dcfb47a | |
| parent | 8e63b37ef27d94f6db79c4ffb941608e8f0dc2f9 (diff) | |
| parent | a52683f6d30d5b0d06da5a194b49c141025f9a61 (diff) | |
| download | systray-d4e9a9f70a92790dbb0d1cee3569282d6af0cf31.tar.bz2 | |
Merge pull request #11 from vlow/master
Fixes wrong return type in 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 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 | 
