This is the mail archive of the gdb-patches@sources.redhat.com 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] Trivial printf format warning fixes



On Mon, 22 Apr 2002, Jason R Thorpe wrote:

>                     error ("Syntax error at prompt position %d",
> -                          promptp - local_prompt);
> +                          (int) (promptp - local_prompt));
 
I think the result of subtracting two pointers can be wider than an int, 
can't it?  If so, casting to an int is not right, and the format should 
be changed to %ld.

(Yes, this is nitpicking, but if we are to fix this warning, might as 
well do it right ;-)


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