diff options
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/srconv.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index e6ee1fb..6a868b1 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2008-12-09 Tom Tromey <tromey@redhat.com> + + * srconv.c (wr_hd): Add parens to placate gcc 4.4. + 2008-12-09 Andrew Stubbs <ams@codesourcery.com> * readelf.c (arm_attr_tag_CPU_arch): Add "v6-M" and "v6S-M". diff --git a/binutils/srconv.c b/binutils/srconv.c index 2a7d638..efccd66 100644 --- a/binutils/srconv.c +++ b/binutils/srconv.c @@ -1,6 +1,6 @@ /* srconv.c -- Sysroff conversion program Copyright 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, - 2005, 2007 Free Software Foundation, Inc. + 2005, 2007, 2008 Free Software Foundation, Inc. This file is part of GNU Binutils. @@ -415,7 +415,7 @@ wr_hd (struct coff_ofile *p) abort (); } - if (! bfd_get_file_flags(abfd) & EXEC_P) + if (! (bfd_get_file_flags(abfd) & EXEC_P)) { hd.ep = 0; } |