diff options
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/elfedit.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 224ebeb..6c5143d 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2019-10-25 H.J. Lu <hongjiu.lu@intel.com> + + * elfedit.c (update_gnu_property): Replace BYTE_PUT with byte_put. + 2019-10-25 Nick Clifton <nickc@redhat.com> * objcopy.c (struct merged_note_section): New structure. Used to diff --git a/binutils/elfedit.c b/binutils/elfedit.c index ea261de..5c0d711 100644 --- a/binutils/elfedit.c +++ b/binutils/elfedit.c @@ -225,7 +225,7 @@ update_gnu_property (const char *file_name, FILE *file) if (disable_x86_features) bitmask &= ~disable_x86_features; if (old_bitmask != bitmask) - BYTE_PUT (ptr, bitmask); + byte_put (ptr, bitmask, 4); goto out; } |