mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-28 10:30:03 +01:00
Fix signedness warning in gio/tests/converter-stream.c:g_expander_converter_convert()
gio/tests/converter-stream.c: In function ‘g_expander_converter_convert’: gio/tests/converter-stream.c:128:21: error: comparison of integer expressions of different signedness: ‘int’ and ‘gsize’ {aka ‘long unsigned int’} 128 | for (i = 0; i < block_size; i++) | ^
This commit is contained in:
parent
56e25d81f6
commit
b07fdb6e4a
@ -94,7 +94,7 @@ g_expander_converter_convert (GConverter *converter,
|
||||
{
|
||||
const guint8 *in, *in_end;
|
||||
guint8 v, *out;
|
||||
int i;
|
||||
gsize i;
|
||||
gsize block_size;
|
||||
|
||||
in = inbuf;
|
||||
|
Loading…
x
Reference in New Issue
Block a user