mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-10 11:14:05 +02:00
Fix signedness warning in gio/gdbus-tool.c
gio/gdbus-tool.c:1183:95: error: comparison of integer expressions of different signedness: ‘guint’ {aka ‘unsigned int’} and ‘int’ 1183 | if ((fd_id = g_unix_fd_list_append (fd_list, g_variant_get_handle (value), &error)) == -1) | ^~
This commit is contained in:
@@ -916,7 +916,7 @@ handle_call (gint *argc,
|
|||||||
GPtrArray *in_signature_types;
|
GPtrArray *in_signature_types;
|
||||||
#ifdef G_OS_UNIX
|
#ifdef G_OS_UNIX
|
||||||
GUnixFDList *fd_list;
|
GUnixFDList *fd_list;
|
||||||
guint fd_id;
|
gint fd_id;
|
||||||
#endif
|
#endif
|
||||||
gboolean complete_names;
|
gboolean complete_names;
|
||||||
gboolean complete_paths;
|
gboolean complete_paths;
|
||||||
|
Reference in New Issue
Block a user