mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-15 04:05:11 +01:00
Fix signedness warning in glib/tests/base64.c
glib/tests/base64.c:28:20: error: comparison of integer expressions of different signedness: ‘gsize’ {aka ‘long unsigned int’} and ‘gint’ {aka ‘int’} 28 | while (input_len < length) | ^
This commit is contained in:
parent
58d5b27ec5
commit
5a361aeeaa
@ -9,7 +9,7 @@ static guchar data[DATA_SIZE];
|
|||||||
|
|
||||||
static void
|
static void
|
||||||
test_incremental (gboolean line_break,
|
test_incremental (gboolean line_break,
|
||||||
gint length)
|
gsize length)
|
||||||
{
|
{
|
||||||
char *p;
|
char *p;
|
||||||
gsize len, decoded_len, max, input_len, block_size;
|
gsize len, decoded_len, max, input_len, block_size;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user