From f76191d591b53ecd4af55f429e35bfe8e0246401 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 9 May 2002 00:25:55 +0000 Subject: Fix funky use of brackets --- ldso/ldso/dl-elf.c | 5 +++-- ldso/ldso/readelflib1.c | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) (limited to 'ldso') diff --git a/ldso/ldso/dl-elf.c b/ldso/ldso/dl-elf.c index b758df2d6..7dbbe6f4b 100644 --- a/ldso/ldso/dl-elf.c +++ b/ldso/ldso/dl-elf.c @@ -535,7 +535,7 @@ struct elf_resolve *_dl_load_elf_shared_library(int secure, * calculated differently for MIPS. We look for a null tag * value instead. */ - while(dpnt->d_tag) { + while(dpnt->d_tag) if (dpnt->d_tag == DT_MIPS_GOTSYM) mips_gotsym = (unsigned long) dpnt->d_un.d_val; if (dpnt->d_tag == DT_MIPS_LOCAL_GOTNO) @@ -543,8 +543,9 @@ struct elf_resolve *_dl_load_elf_shared_library(int secure, if (dpnt->d_tag == DT_MIPS_SYMTABNO) mips_symtabno = (unsigned long) dpnt->d_un.d_val; #else - for (i = 0; i < dynamic_size; i++) { + for (i = 0; i < dynamic_size; i++) #endif + { if (dpnt->d_tag > DT_JMPREL) { dpnt++; continue; diff --git a/ldso/ldso/readelflib1.c b/ldso/ldso/readelflib1.c index b758df2d6..7dbbe6f4b 100644 --- a/ldso/ldso/readelflib1.c +++ b/ldso/ldso/readelflib1.c @@ -535,7 +535,7 @@ struct elf_resolve *_dl_load_elf_shared_library(int secure, * calculated differently for MIPS. We look for a null tag * value instead. */ - while(dpnt->d_tag) { + while(dpnt->d_tag) if (dpnt->d_tag == DT_MIPS_GOTSYM) mips_gotsym = (unsigned long) dpnt->d_un.d_val; if (dpnt->d_tag == DT_MIPS_LOCAL_GOTNO) @@ -543,8 +543,9 @@ struct elf_resolve *_dl_load_elf_shared_library(int secure, if (dpnt->d_tag == DT_MIPS_SYMTABNO) mips_symtabno = (unsigned long) dpnt->d_un.d_val; #else - for (i = 0; i < dynamic_size; i++) { + for (i = 0; i < dynamic_size; i++) #endif + { if (dpnt->d_tag > DT_JMPREL) { dpnt++; continue; -- cgit v1.2.3