Fix non-initialized variable in gio/tests/date.c

This commit is contained in:
Loic Le Page 2022-01-19 18:58:39 +01:00 committed by Philip Withnall
parent af69d438ed
commit 19280e2166

View File

@ -1384,7 +1384,7 @@ test_year (gconstpointer t)
GDateYear y = GPOINTER_TO_INT (t);
GDateMonth m;
GDateDay day;
guint32 j;
guint32 j = 0;
GDate *d;
gint i;
GDate tmp;