From bdb435f73dda80e54ae6b4f5c861bd62ed99ed3d Mon Sep 17 00:00:00 2001 From: Panagiotis Issaris Date: Mon, 15 Sep 2008 20:47:50 +0200 Subject: [PATCH] Use correct format specifier for uint64_t --- gtk/x264_gtk_encode_main_window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/x264_gtk_encode_main_window.c b/gtk/x264_gtk_encode_main_window.c index fe6ac934..6deea6d3 100644 --- a/gtk/x264_gtk_encode_main_window.c +++ b/gtk/x264_gtk_encode_main_window.c @@ -753,7 +753,7 @@ x264_fill_status_window (GIOChannel *io UNUSED, gtk_entry_set_text (GTK_ENTRY (thread_data->video_rendering_rate), str); - snprintf (str, 128, "%lld:%02lld:%02lld", + snprintf (str, 128, "%" PRId64 ":%02" PRId64 ":%02" PRId64, (pipe_data.elapsed / 1000000) / 3600, ((pipe_data.elapsed / 1000000) / 60) % 60, (pipe_data.elapsed / 1000000) % 60); -- 2.40.0