summaryrefslogtreecommitdiffstats
path: root/src/nm.c
diff options
context:
space:
mode:
authorMark Wielaard <[email protected]>2012-12-11 22:27:05 +0100
committerMark Wielaard <[email protected]>2012-12-11 22:27:05 +0100
commit7df3d2cd70932cd70515dbeb75e4db66fd27f192 (patch)
tree84c976b0b6658eb910d3d96b3052fec9a9c7517c /src/nm.c
parent57bd66cabf6e6b9ecf622cdbf350804897a8df58 (diff)
Add missing semicolon in show_symbols_sysv
Signed-off-by: Mark Wielaard <[email protected]>
Diffstat (limited to 'src/nm.c')
-rw-r--r--src/nm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nm.c b/src/nm.c
index 8a1c57a4..7aae84b0 100644
--- a/src/nm.c
+++ b/src/nm.c
@@ -769,7 +769,7 @@ show_symbols_sysv (Ebl *ebl, GElf_Word strndx, const char *fullname,
gelf_getshdr (scn, &shdr_mem)->sh_name);
if (unlikely (name == NULL))
{
- const size_t bufsz = sizeof "[invalid sh_name 0x12345678]"
+ const size_t bufsz = sizeof "[invalid sh_name 0x12345678]";
name = alloca (bufsz);
snprintf (name, bufsz, "[invalid sh_name %#" PRIx32 "]",
gelf_getshdr (scn, &shdr_mem)->sh_name);