* 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 471e875e0adf83d6c685009657d025103519378b..51934913c5aec639579a61b1495715a28b12dd1e 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 b54beeb6fe11510a853e49d859f82ca74a6472a3..7691e324283568c4bd2072db5b9164a71770909e 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))