* build patch

2000-03-03  Jonathan Larmour  <jlarmour@redhat.co.uk>

	* func.c (buffer_read_memory): Change type of size to unsigned to
	match prototype
This commit is contained in:
Frank Ch. Eigler 2000-03-03 15:00:58 +00:00
parent b3a9033281
commit 0ef33cd05d
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2000-03-03 Jonathan Larmour <jlarmour@redhat.co.uk>
* func.c (buffer_read_memory): Change type of size to unsigned to
match prototype
Thu Sep 2 18:15:53 1999 Andrew Cagney <cagney@b1.cygnus.com>
* configure: Regenerated to track ../common/aclocal.m4 changes.

View File

@ -831,7 +831,7 @@ int
buffer_read_memory(addr, buffer, size, info)
bfd_vma addr;
bfd_byte *buffer;
int32 size;
uint32 size;
struct disassemble_info *info;
{
if (size == sis_memory_read(addr, buffer, size))