mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-23 13:21:43 +08:00
sim: microblaze: fix printf string
Since sizeof returns a size_t, use %zu to display it.
This commit is contained in:
parent
d1771b7685
commit
3e95021c77
@ -1,3 +1,7 @@
|
||||
2015-03-08 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* interp.c (microblaze_extract_unsigned_integer): Change %ld to %zu.
|
||||
|
||||
2015-02-20 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* interp.c: Delete sysdep.h and netinet/in.h includes.
|
||||
|
@ -51,7 +51,7 @@ microblaze_extract_unsigned_integer (unsigned char *addr, int len)
|
||||
|
||||
if (len > (int) sizeof (unsigned long))
|
||||
printf ("That operation is not available on integers of more than "
|
||||
"%ld bytes.", sizeof (unsigned long));
|
||||
"%zu bytes.", sizeof (unsigned long));
|
||||
|
||||
/* Start at the most significant end of the integer, and work towards
|
||||
the least significant. */
|
||||
|
Loading…
Reference in New Issue
Block a user