diff options
Diffstat (limited to 'src/format/elf')
-rw-r--r-- | src/format/elf/elf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/format/elf/elf.c b/src/format/elf/elf.c index 64708ee..6d2138a 100644 --- a/src/format/elf/elf.c +++ b/src/format/elf/elf.c @@ -345,7 +345,7 @@ static void g_elf_format_refine_portions(const GElfFormat *format, GBinPortion * new = g_binary_portion_new(background); - sprintf(desc, "%s %s", + sprintf(desc, "%s \"%s\"", _("Segment"), get_elf_program_type_desc(ELF_PHDR(format, phdr, p_type))); @@ -391,7 +391,7 @@ static void g_elf_format_refine_portions(const GElfFormat *format, GBinPortion * else name = NULL; if (name != NULL) - sprintf(desc, "%s %s", _("Section"), name); + sprintf(desc, "%s \"%s\"", _("Section"), name); else sprintf(desc, "%s ???", _("Section")); |