summaryrefslogtreecommitdiff
path: root/bfd/pef.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2008-12-09 18:59:54 +0000
committerTom Tromey <tromey@redhat.com>2008-12-09 18:59:54 +0000
commitda83465ce54501900e17ba58612235bcec583afc (patch)
tree3736fdc0c60b9e46121fb25d36061a050af64785 /bfd/pef.c
parenta17930004eea4cda64bcc8fc0b90cb11c5225b54 (diff)
downloadbinutils-redhat-da83465ce54501900e17ba58612235bcec583afc.tar.gz
bfd
* pef.c (bfd_pef_parse_traceback_table): Add parens to placate gcc 4.4. binutils * srconv.c (wr_hd): Add parens to placate gcc 4.4.
Diffstat (limited to 'bfd/pef.c')
-rw-r--r--bfd/pef.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/pef.c b/bfd/pef.c
index 6630a770b9..b839095146 100644
--- a/bfd/pef.c
+++ b/bfd/pef.c
@@ -97,7 +97,7 @@ bfd_pef_parse_traceback_table (bfd *abfd,
if (! (table.flags2 & TB_NAME_PRESENT))
return -1;
- if (! table.flags1 & TB_HAS_TBOFF)
+ if (! (table.flags1 & TB_HAS_TBOFF))
return -1;
offset = 8;