]> sourceware.org Git - glibc.git/commitdiff
Mon Jun 5 04:02:26 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
authorRoland McGrath <roland@gnu.org>
Mon, 5 Jun 1995 09:00:14 +0000 (09:00 +0000)
committerRoland McGrath <roland@gnu.org>
Mon, 5 Jun 1995 09:00:14 +0000 (09:00 +0000)
* elf/elf.h (ELFMAG): Use \177 instead of \x7f.  It seems GCC
  insists on seeing the following E as part of hex 7FE, and
  complaining that is wider than a byte.

ChangeLog
elf/elf.h

index 44f5053a1ac62caaf3505a89c5068c41547e603d..e6f68dffb41b172618e5392ae1410709fde57272 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Mon Jun  5 04:02:26 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
+
+       * elf/elf.h (ELFMAG): Use \177 instead of \x7f.  It seems GCC
+       insists on seeing the following E as part of hex 7FE, and
+       complaining that is wider than a byte.
+
 Sun Jun  4 22:14:11 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
 
        * hurd/Makefile (sig): Added thread-self.
index 87cf1098eeb039c73530001d82f0cda1dd939ebb..4730b8e733054cd4cc3aba90d97f0e3117d7aaa0 100644 (file)
--- a/elf/elf.h
+++ b/elf/elf.h
@@ -73,7 +73,7 @@ typedef struct
 #define ELFMAG3                'F'             /* Magic number byte 3 */
 
 /* Conglomeration of the identification bytes, for easy testing as a word.  */
-#define        ELFMAG          "\x7fELF"
+#define        ELFMAG          "\177ELF"
 #define        SELFMAG         4
 
 #define EI_CLASS       4               /* File class byte index */
This page took 0.043261 seconds and 5 git commands to generate.