mirror of
				https://gitlab.gnome.org/GNOME/glib.git
				synced 2025-11-04 10:08:56 +01:00 
			
		
		
		
	Fix cast pointer to int warning in gio/tests/socket.c
This commit is contained in:
		
				
					committed by
					
						
						Loïc Le Page
					
				
			
			
				
	
			
			
			
						parent
						
							7bd79b112d
						
					
				
				
					commit
					e372ed3413
				
			@@ -1203,7 +1203,7 @@ duplicate_fd (int fd)
 | 
			
		||||
      return -1;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
  return (int)newfd;
 | 
			
		||||
  return (int)(gintptr)newfd;
 | 
			
		||||
#else
 | 
			
		||||
  return dup (fd);
 | 
			
		||||
#endif
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user