* build patch
authorFrank Ch. Eigler <fche@redhat.com>
Fri, 3 Mar 2000 15:00:58 +0000 (15:00 +0000)
committerFrank Ch. Eigler <fche@redhat.com>
Fri, 3 Mar 2000 15:00:58 +0000 (15:00 +0000)
2000-03-03  Jonathan Larmour  <jlarmour@redhat.co.uk>

* func.c (buffer_read_memory): Change type of size to unsigned to
match prototype

sim/erc32/ChangeLog
sim/erc32/func.c

index 471e875..5193491 100644 (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.
index b54beeb..7691e32 100644 (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))