mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-04-14 11:38:05 +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:
parent
33148e6bc3
commit
16773d2702
@ -737,7 +737,7 @@ int
|
|||||||
main (int argc, char** argv)
|
main (int argc, char** argv)
|
||||||
{
|
{
|
||||||
gchar *path;
|
gchar *path;
|
||||||
gint i;
|
gsize i;
|
||||||
|
|
||||||
/* Try to get all the leap year cases. */
|
/* Try to get all the leap year cases. */
|
||||||
int check_years[] = {
|
int check_years[] = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user