summaryrefslogtreecommitdiffstats
path: root/usr.bin/elfdump
diff options
context:
space:
mode:
authorschweikh <schweikh@FreeBSD.org>2003-09-06 10:55:30 +0000
committerschweikh <schweikh@FreeBSD.org>2003-09-06 10:55:30 +0000
commitc653c4017e06e949706b2e2d4b61e45699b5bea8 (patch)
tree98bdee98297938bb5b7b1e3a55694901598cb469 /usr.bin/elfdump
parentee8ad8e3cf0b63ea248a6010114bcedead865f10 (diff)
downloadFreeBSD-src-c653c4017e06e949706b2e2d4b61e45699b5bea8.zip
FreeBSD-src-c653c4017e06e949706b2e2d4b61e45699b5bea8.tar.gz
Removed two spurious semicolons after function definitions.
Removed three spurious tabs on lines by themselves. PR: bin/56492 Submitted by: Stefan Farfeleder <stefan@fafoe.narf.at> MFC after: 6 weeks
Diffstat (limited to 'usr.bin/elfdump')
-rw-r--r--usr.bin/elfdump/elfdump.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/elfdump/elfdump.c b/usr.bin/elfdump/elfdump.c
index d4a53ad..a9b33e5 100644
--- a/usr.bin/elfdump/elfdump.c
+++ b/usr.bin/elfdump/elfdump.c
@@ -117,7 +117,7 @@ int elf32_offsets[] = {
offsetof(Elf32_Sym, st_name), offsetof(Elf32_Sym, st_value),
offsetof(Elf32_Sym, st_size), offsetof(Elf32_Sym, st_info),
offsetof(Elf32_Sym, st_shndx),
-
+
offsetof(Elf32_Rel, r_offset), offsetof(Elf32_Rel, r_info),
offsetof(Elf32_Rela, r_offset), offsetof(Elf32_Rela, r_info),
@@ -129,7 +129,7 @@ int elf64_offsets[] = {
offsetof(Elf64_Dyn, d_tag), offsetof(Elf64_Dyn, d_un.d_ptr),
offsetof(Elf64_Dyn, d_un.d_val),
-
+
offsetof(Elf32_Ehdr, e_ident[EI_CLASS]),
offsetof(Elf32_Ehdr, e_ident[EI_DATA]),
offsetof(Elf32_Ehdr, e_ident[EI_OSABI]),
@@ -158,7 +158,7 @@ int elf64_offsets[] = {
offsetof(Elf64_Sym, st_name), offsetof(Elf64_Sym, st_value),
offsetof(Elf64_Sym, st_size), offsetof(Elf64_Sym, st_info),
offsetof(Elf64_Sym, st_shndx),
-
+
offsetof(Elf64_Rel, r_offset), offsetof(Elf64_Rel, r_info),
offsetof(Elf64_Rela, r_offset), offsetof(Elf64_Rela, r_info),
@@ -238,7 +238,7 @@ d_tags(u_int64_t tag) {
case 0x7fffffff: return "DT_SUNW_FILTER";
default: return "ERROR: TAG NOT DEFINED";
}
-};
+}
static const char *
e_machines(u_int mach)
@@ -256,7 +256,7 @@ e_machines(u_int mach)
case EM_IA_64: return "EM_IA_64";
}
return "(unknown machine)";
-};
+}
const char *e_types[] = {
"ET_NONE", "ET_REL", "ET_EXEC", "ET_DYN", "ET_CORE"
OpenPOWER on IntegriCloud