From c325a0bebfd8d27fc2f066efb3146b42e7a9a6a7 Mon Sep 17 00:00:00 2001 From: Luca Bruno Date: Mon, 4 Jul 2016 22:34:31 +0200 Subject: [PATCH] Fix string format in startup notification to be a gint64 https://bugzilla.gnome.org/show_bug.cgi?id=762407 --- src/core/startup-notification.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/startup-notification.c b/src/core/startup-notification.c index cb58c9eff..df317f65d 100644 --- a/src/core/startup-notification.c +++ b/src/core/startup-notification.c @@ -418,7 +418,7 @@ collect_timed_out_foreach (void *element, elapsed = ctod->now - timestamp; meta_topic (META_DEBUG_STARTUP, - "Sequence used %ld ms vs. %d max: %s\n", + "Sequence used %" G_GINT64_FORMAT " ms vs. %d max: %s\n", elapsed, STARTUP_TIMEOUT, meta_startup_notification_sequence_get_id (sequence));