From 05d5bc6c7711f70d194cd106875a8df53439e562 Mon Sep 17 00:00:00 2001 From: Christian Hergert Date: Mon, 22 May 2023 19:05:25 -0700 Subject: [PATCH] libsysprof-analyze: fix format to match other use --- src/libsysprof-analyze/sysprof-elf-symbolizer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsysprof-analyze/sysprof-elf-symbolizer.c b/src/libsysprof-analyze/sysprof-elf-symbolizer.c index 5994219e..48896499 100644 --- a/src/libsysprof-analyze/sysprof-elf-symbolizer.c +++ b/src/libsysprof-analyze/sysprof-elf-symbolizer.c @@ -110,7 +110,7 @@ fallback: * access, so tell the user about what file contained the symbol * and where (relative to that file) the IP was. */ - name = g_strdup_printf ("In file %s+0x%"G_GINT64_MODIFIER"x", + name = g_strdup_printf ("In File %s+0x%"G_GINT64_MODIFIER"x", sysprof_document_mmap_get_file (map), relative_address); begin_address = address;