This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] sim/microblaze/interp.c: Use long int format instead of int to avoid compiling warnings


On Tue 01 Jul 2014 08:14:46 Chen Gang wrote:

sim patches only go to gdb-patches, so don't include cgen/binutils in the 
future please

> --- a/sim/microblaze/interp.c
> +++ b/sim/microblaze/interp.c
> 
>    if (len > (int) sizeof (unsigned long))
>      printf ("That operation is not available on integers of more than "
> -	    "%d bytes.", sizeof (unsigned long));
> +	    "%ld bytes.", sizeof (unsigned long));

unfortunately, i don't believe this is correct.  pretty sure the right answer 
is %zu as sizeof() is a size_t.
-mike

Attachment: signature.asc
Description: This is a digitally signed message part.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]