diff options
author | Denys Vlasenko | 2010-01-28 02:24:24 +0100 |
---|---|---|
committer | Denys Vlasenko | 2010-01-28 02:24:24 +0100 |
commit | 6b9f1633537e2ff06eb1a0741e4598a294f40fcb (patch) | |
tree | a13f4f3558c2988bc95b5a59c9996da64a0bd570 /modutils/modutils-24.c | |
parent | 17323a6245597f16321e6bf99536ae9bb89c79cf (diff) | |
download | busybox-6b9f1633537e2ff06eb1a0741e4598a294f40fcb.zip busybox-6b9f1633537e2ff06eb1a0741e4598a294f40fcb.tar.gz |
*: style fixes. no code changes (verified with objdump)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'modutils/modutils-24.c')
-rw-r--r-- | modutils/modutils-24.c | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/modutils/modutils-24.c b/modutils/modutils-24.c index a878e74..4ede01f 100644 --- a/modutils/modutils-24.c +++ b/modutils/modutils-24.c @@ -865,19 +865,23 @@ arch_apply_relocation(struct obj_file *f, break; case R_H8_PCREL16: v -= dot + 2; - if ((ElfW(Sword))v > 0x7fff || - (ElfW(Sword))v < -(ElfW(Sword))0x8000) + if ((ElfW(Sword))v > 0x7fff + || (ElfW(Sword))v < -(ElfW(Sword))0x8000 + ) { ret = obj_reloc_overflow; - else + } else { *(unsigned short *)loc = v; + } break; case R_H8_PCREL8: v -= dot + 1; - if ((ElfW(Sword))v > 0x7f || - (ElfW(Sword))v < -(ElfW(Sword))0x80) + if ((ElfW(Sword))v > 0x7f + || (ElfW(Sword))v < -(ElfW(Sword))0x80 + ) { ret = obj_reloc_overflow; - else + } else { *(unsigned char *)loc = v; + } break; #elif defined(__i386__) |