mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-01 23:13:40 +02:00
Fix a signedness problem in glib/tests/date.c
glib/tests/date.c:778:17: error: comparison of integer expressions of different signedness: ‘gint’ {aka ‘int’} and ‘long unsigned int’ 778 | for (i = 0; i < G_N_ELEMENTS (check_years); i++) | ^
This commit is contained in:
@@ -737,7 +737,7 @@ int
|
||||
main (int argc, char** argv)
|
||||
{
|
||||
gchar *path;
|
||||
gint i;
|
||||
gsize i;
|
||||
|
||||
/* Try to get all the leap year cases. */
|
||||
int check_years[] = {
|
||||
|
Reference in New Issue
Block a user