mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Fix cast pointer to int warning in gio/tests/socket.c
This commit is contained in:
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
|
||||
|
Loading…
Reference in New Issue
Block a user