diff options
author | Jan Beulich <jbeulich@novell.com> | 2007-04-26 06:59:55 +0000 |
---|---|---|
committer | Jan Beulich <jbeulich@novell.com> | 2007-04-26 06:59:55 +0000 |
commit | 0c3e446c448c0681d859493c61603fc6aaad3489 (patch) | |
tree | 0a9a3e444313df24c2c931a9aa3ddcf9a9b214c8 | |
parent | e8590c10490b01c5fef8701b15b3eadcb8fa2ef6 (diff) | |
download | gdb-0c3e446c448c0681d859493c61603fc6aaad3489.zip gdb-0c3e446c448c0681d859493c61603fc6aaad3489.tar.gz gdb-0c3e446c448c0681d859493c61603fc6aaad3489.tar.bz2 |
Revert the value change of DT_ENCODING from 2003-01-17. Luckily (and
surprisingly) the value isn't really being used anywhere, henc no other
changes are needed.
include/elf/
2007-04-26 Jan Beulich <jbeulich@novell.com>
* common.h (DT_ENCODING): Correct value (back to spec mandated
value).
-rw-r--r-- | include/elf/ChangeLog | 5 | ||||
-rw-r--r-- | include/elf/common.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog index ec6fdfa..89deb48 100644 --- a/include/elf/ChangeLog +++ b/include/elf/ChangeLog @@ -1,3 +1,8 @@ +2007-04-26 Jan Beulich <jbeulich@novell.com> + + * common.h (DT_ENCODING): Correct value (back to spec mandated + value). + 2007-03-08 Alan Modra <amodra@bigpond.net.au> * v850.h (V850_OTHER_TDA_BYTE): Delete. diff --git a/include/elf/common.h b/include/elf/common.h index ab7f35a..2d68403 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -550,7 +550,7 @@ #define DT_FINI_ARRAYSZ 28 #define DT_RUNPATH 29 #define DT_FLAGS 30 -#define DT_ENCODING 31 +#define DT_ENCODING 32 #define DT_PREINIT_ARRAY 32 #define DT_PREINIT_ARRAYSZ 33 |