diff options
author | peter <peter@FreeBSD.org> | 2001-06-19 06:48:58 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2001-06-19 06:48:58 +0000 |
commit | 843008ffd29f9b726febd49912712cff5c4ce7c0 (patch) | |
tree | d9a538f2d8d2cd9974734309d00037ba6793e0be /sys/boot | |
parent | fd067874e33368e23e4e133b2eb58dfd1fdd6396 (diff) | |
download | FreeBSD-src-843008ffd29f9b726febd49912712cff5c4ce7c0.zip FreeBSD-src-843008ffd29f9b726febd49912712cff5c4ce7c0.tar.gz |
Fix some of the worst formatting bug (seperate commit)
Diffstat (limited to 'sys/boot')
-rw-r--r-- | sys/boot/common/load_elf.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/boot/common/load_elf.c b/sys/boot/common/load_elf.c index 388d5a1..e0d5821 100644 --- a/sys/boot/common/load_elf.c +++ b/sys/boot/common/load_elf.c @@ -538,7 +538,8 @@ out: static char invalid_name[] = "bad"; char * -fake_modname(const char *name) { +fake_modname(const char *name) +{ char *sp, *ep; size_t len; @@ -565,7 +566,8 @@ fake_modname(const char *name) { } int -elf_parse_modmetadata(struct preloaded_file *fp, elf_file_t ef) { +elf_parse_modmetadata(struct preloaded_file *fp, elf_file_t ef) +{ struct mod_metadata md; Elf_Sym sym; char *s, *v, **p; |