Browse Source

* objcopy.c (filter_bytes): Make MEMHUNK a char *, not PTR, so we

can do arithmetic on it.
gdb-4_18-branch
David MacKenzie 33 years ago
parent
commit
5d2f7e30c5
  1. 5
      binutils/ChangeLog
  2. 2
      binutils/objcopy.c

5
binutils/ChangeLog

@ -1,3 +1,8 @@
Fri Feb 4 10:46:01 1994 David J. Mackenzie (djm@thepub.cygnus.com)
* objcopy.c (filter_bytes): Make MEMHUNK a char *, not PTR, so we
can do arithmetic on it.
Thu Feb 3 14:06:41 1994 David J. Mackenzie (djm@thepub.cygnus.com)
* objdump.c (dump_section_stabs, read_section_stabs,

2
binutils/objcopy.c

@ -212,7 +212,7 @@ filter_symbols (abfd, osyms, isyms, symcount)
void
filter_bytes (memhunk, size)
PTR memhunk;
char *memhunk;
bfd_size_type *size;
{
char *from = memhunk + copy_byte, *to = memhunk, *end = memhunk + *size;

Loading…
Cancel
Save