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] Fix cygwin build error with i386-linux-tdep.c


On Sun, Aug 30, 2009 at 9:15 PM, Hui Zhu<teawater@gmail.com> wrote:
> Hi guys,
>
> ? if (tmpu32 > 499)
> ? ? {
> ? ? ? printf_unfiltered (_("Process record and replay target doesn't "
> - ? ? ? ? ? ? ? ? ? ? ? ? ? "support syscall number %u\n"), tmpu32);
> + ? ? ? ? ? ? ? ? ? ? ? ? ? "support syscall number %u\n"), (unsigned) tmpu32);
> ? ? ? return -1;
> ? ? }
>

Sorry, it's not clear to me.

when looking into the code, I found the type of tmpu32 is uint32_t,
why did the gcc complain "warning: unsigned int format, uint32_t arg
(arg 2)"?

%u doesn't mean unsigned int?


-- 
Thanks

Jiang


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