mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-05 08:56:16 +01:00
gdatetime: Quiet GCC warning about possibly-uninitialized
This commit is contained in:
parent
c2a2350cc1
commit
c026cf56a1
@ -2318,10 +2318,10 @@ g_date_time_format (GDateTime *datetime,
|
||||
GString *outstr;
|
||||
gchar *tmp;
|
||||
gunichar c;
|
||||
gboolean in_mod;
|
||||
gboolean alt_digits;
|
||||
gboolean pad_set;
|
||||
gchar pad;
|
||||
gboolean in_mod = FALSE;
|
||||
gboolean alt_digits = FALSE;
|
||||
gboolean pad_set = FALSE;
|
||||
gchar pad = '\0';
|
||||
gchar fmt[20];
|
||||
|
||||
g_return_val_if_fail (datetime != NULL, NULL);
|
||||
|
Loading…
Reference in New Issue
Block a user