mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 15:36:17 +01:00
Fix a warning reported by static analyser tool:
Assignment of a signed value which has type 'time_t' to a variable of a bigger integer type 'guint64'
This commit is contained in:
parent
e03f83212d
commit
593eeff55e
@ -658,7 +658,7 @@ keyring_generate_entry (const gchar *cookie_context,
|
||||
}
|
||||
|
||||
new_contents = g_string_new (NULL);
|
||||
now = time (NULL);
|
||||
now = (guint64) time (NULL);
|
||||
changed_file = FALSE;
|
||||
|
||||
max_line_id = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user