mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-24 21:16:15 +01:00
Fix signedness warning in gio/tests/file.c
gio/tests/file.c: In function ‘written_cb’: gio/tests/file.c:358:17: error: comparison of integer expressions of different signedness: ‘gint’ {aka ‘int’} and ‘size_t’ {aka ‘long unsigned int’} 358 | if (data->pos < strlen (data->data)) | ^
This commit is contained in:
parent
55d18fd3dc
commit
8608eccf9a
@ -174,7 +174,7 @@ typedef struct
|
||||
gint monitor_deleted;
|
||||
gint monitor_changed;
|
||||
gchar *monitor_path;
|
||||
gint pos;
|
||||
gsize pos;
|
||||
const gchar *data;
|
||||
gchar *buffer;
|
||||
guint timeout;
|
||||
|
Loading…
Reference in New Issue
Block a user