mirror of
				https://gitlab.gnome.org/GNOME/glib.git
				synced 2025-11-04 01:58:54 +01:00 
			
		
		
		
	gmain: fix g_main_context_check declaration
g_main_context_check is defined as a function returning gboolean. It should be declared as such. https://bugzilla.gnome.org/show_bug.cgi?id=774086
This commit is contained in:
		
				
					committed by
					
						
						Colin Walters
					
				
			
			
				
	
			
			
			
						parent
						
							d8acf9b956
						
					
				
				
					commit
					4607bd377f
				
			@@ -366,10 +366,10 @@ gint     g_main_context_query    (GMainContext *context,
 | 
			
		||||
                                  GPollFD      *fds,
 | 
			
		||||
                                  gint          n_fds);
 | 
			
		||||
GLIB_AVAILABLE_IN_ALL
 | 
			
		||||
gint     g_main_context_check    (GMainContext *context,
 | 
			
		||||
                                  gint          max_priority,
 | 
			
		||||
                                  GPollFD      *fds,
 | 
			
		||||
                                  gint          n_fds);
 | 
			
		||||
gboolean     g_main_context_check    (GMainContext *context,
 | 
			
		||||
                                      gint          max_priority,
 | 
			
		||||
                                      GPollFD      *fds,
 | 
			
		||||
                                      gint          n_fds);
 | 
			
		||||
GLIB_AVAILABLE_IN_ALL
 | 
			
		||||
void     g_main_context_dispatch (GMainContext *context);
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user