build: Fix -Wformat-y2k compilation errors

The strings are user visible strings, so this isn't a y2k problem.
This commit is contained in:
Bastien Nocera 2016-06-08 14:14:24 +02:00
parent 71e3bb02f9
commit 4b03777c54

View file

@ -273,7 +273,10 @@ up_device_to_text (UpDevice *device)
/* get a human readable time */
t = (time_t) up_exported_device_get_update_time (priv->proxy_device);
time_tm = localtime (&t);
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wformat-y2k"
strftime (time_buf, sizeof time_buf, "%c", time_tm);
#pragma GCC diagnostic pop
string = g_string_new ("");
if (!is_display)