From 7b7317ead2655e4d4fd8e116164739fc1a7a1d2e Mon Sep 17 00:00:00 2001 From: Rafael Fontenelle Date: Wed, 9 Oct 2024 17:36:49 +0000 Subject: [PATCH] sysprof: Use PRIi64 instead of G_GINT64_FORMAT --- src/sysprof/sysprof-recording-pad.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sysprof/sysprof-recording-pad.c b/src/sysprof/sysprof-recording-pad.c index c0be947c..f3b39c30 100644 --- a/src/sysprof/sysprof-recording-pad.c +++ b/src/sysprof/sysprof-recording-pad.c @@ -53,7 +53,7 @@ format_event_count (GObject *unused, gint64 event_count) { /* translators: this expands to the number of events recorded by the profiler as an indicator of progress */ - return g_strdup_printf (_("%"G_GINT64_FORMAT" events"), event_count); + return g_strdup_printf (_("%"PRIi64" events"), event_count); } static char *