projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
81268ac
)
* objcopy.c (filter_bytes): Make MEMHUNK a char *, not PTR, so we
author
David MacKenzie
<djm@cygnus>
Fri, 4 Feb 1994 18:47:33 +0000
(18:47 +0000)
committer
David MacKenzie
<djm@cygnus>
Fri, 4 Feb 1994 18:47:33 +0000
(18:47 +0000)
can do arithmetic on it.
binutils/ChangeLog
patch
|
blob
|
history
binutils/objcopy.c
patch
|
blob
|
history
diff --git
a/binutils/ChangeLog
b/binutils/ChangeLog
index e9ad30caa6f40986df8885537cf1de2ece097019..a69713cc683eadfe18466f6d6f019bc0804154db 100644
(file)
--- a/
binutils/ChangeLog
+++ b/
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,
diff --git
a/binutils/objcopy.c
b/binutils/objcopy.c
index 954abb8e054a84e9c94cfe355989540dc26c2546..690bf8d0987fab96ae500df93321d1aee1c00896 100644
(file)
--- a/
binutils/objcopy.c
+++ b/
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;