* objcopy.c (filter_bytes): Make MEMHUNK a char *, not PTR, so we
authorDavid MacKenzie <djm@cygnus>
Fri, 4 Feb 1994 18:47:33 +0000 (18:47 +0000)
committerDavid MacKenzie <djm@cygnus>
Fri, 4 Feb 1994 18:47:33 +0000 (18:47 +0000)
can do arithmetic on it.

binutils/ChangeLog
binutils/objcopy.c

index e9ad30caa6f40986df8885537cf1de2ece097019..a69713cc683eadfe18466f6d6f019bc0804154db 100644 (file)
@@ -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,
index 954abb8e054a84e9c94cfe355989540dc26c2546..690bf8d0987fab96ae500df93321d1aee1c00896 100644 (file)
@@ -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;
This page took 0.038926 seconds and 4 git commands to generate.