summaryrefslogtreecommitdiff
path: root/usr.bin/elfdump
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-06-23 16:37:11 -0400
committerIan Moffett <ian@osmora.org>2025-06-23 16:37:11 -0400
commit3578da5681a5b4aa85c12ca6151988369250a73c (patch)
tree08f33d2902b383807b50bb544e6ba27853e27b75 /usr.bin/elfdump
parent73b8dda996ba8c6e85ebdc1ecd3d9e775694cb3f (diff)
usr.bin: elfdump: Add missing operator in elftype
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'usr.bin/elfdump')
-rw-r--r--usr.bin/elfdump/elfdump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/elfdump/elfdump.c b/usr.bin/elfdump/elfdump.c
index 12394ba..d4a0932 100644
--- a/usr.bin/elfdump/elfdump.c
+++ b/usr.bin/elfdump/elfdump.c
@@ -40,7 +40,7 @@ static const char *elftype[] = {
[ET_REL] = "Relocatable",
[ET_EXEC] = "Executable",
[ET_DYN] = "Shared object",
- [ET_CORE] "Core dump"
+ [ET_CORE] = "Core dump"
};
/* Phdr.p_type table */