diff options
author | Nick Clifton <nickc@redhat.com> | 2000-05-30 18:35:35 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-05-30 18:35:35 +0000 |
commit | c1485d85e0bae60bf321baa007dd44bcc56b534b (patch) | |
tree | 05fb4d47e213be2861b124b1278ec24911e36fef /opcodes/h8300-dis.c | |
parent | c1a72ffdd6aecb2880a7ea3a00234fd48142074c (diff) | |
download | gdb-c1485d85e0bae60bf321baa007dd44bcc56b534b.zip gdb-c1485d85e0bae60bf321baa007dd44bcc56b534b.tar.gz gdb-c1485d85e0bae60bf321baa007dd44bcc56b534b.tar.bz2 |
Replace defines with those from intl/libgettext.h to quieten gcc warnings.
Diffstat (limited to 'opcodes/h8300-dis.c')
-rw-r--r-- | opcodes/h8300-dis.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/h8300-dis.c b/opcodes/h8300-dis.c index 84f4aad..435d4c0 100644 --- a/opcodes/h8300-dis.c +++ b/opcodes/h8300-dis.c @@ -165,11 +165,11 @@ bfd_h8_disassemble (addr, info, mode) if (looking_for & DBIT) { - if ((looking_for & 5) != (thisnib &5)) goto fail; + if ((looking_for & 5) != (thisnib & 5)) goto fail; abs = (thisnib & 0x8) ? 2 : 1; } - else if (looking_for & (REG | IND|INC|DEC)) + else if (looking_for & (REG | IND|INC|DEC)) { if (looking_for & SRC) { |