1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-07-15 14:43:34 +02:00

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

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