Add parens like the comment says.
authorAlan Modra <amodra@gmail.com>
Sun, 14 Jan 2001 06:12:07 +0000 (06:12 +0000)
committerAlan Modra <amodra@gmail.com>
Sun, 14 Jan 2001 06:12:07 +0000 (06:12 +0000)
bfd/ChangeLog
bfd/opncls.c

index e0308b9230f48955482d1e2ddc6b82cdd9f2acca..7c3243980a824db05d9fc41f68fb00ec6acc460e 100644 (file)
@@ -1,5 +1,8 @@
 2001-01-14  Alan Modra  <alan@linuxcare.com.au>
 
+       * opncls.c (bfd_fdopenr): Add parens like the comment says around
+       O_ACCMODE.
+
        * elf32-hppa.c (elf32_hppa_size_dynamic_sections): Don't create
        .plt entries for DT_INIT and DT_FINI.
        (elf32_hppa_finish_dynamic_sections): Remove special handling of
index 57ca0d0a25948b5180397c65ff1311e290057222..39947dadb4a1fd0c51945113df7268975b794647 100644 (file)
@@ -1,5 +1,5 @@
 /* opncls.c -- open and close a BFD.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 1997
+   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 1997, 2001
    Free Software Foundation, Inc.
 
    Written by Cygnus Support.
@@ -248,7 +248,7 @@ bfd_fdopenr (filename, target, fd)
      be written through, although doing so requires that we end
      the previous clause with a preposition.  */
   /* (O_ACCMODE) parens are to avoid Ultrix header file bug */
-  switch (fdflags & O_ACCMODE)
+  switch (fdflags & (O_ACCMODE))
     {
     case O_RDONLY: nbfd->direction = read_direction; break;
     case O_WRONLY: nbfd->direction = write_direction; break;
This page took 0.028579 seconds and 4 git commands to generate.