Skip to content
Snippets Groups Projects
Commit dc4b0b38 authored by Andrew Klossner's avatar Andrew Klossner Committed by Wolfgang Denk
Browse files

Fix printf errors.


The compiler will help find mismatches between printf formats and
arguments if you let it.  This patch adds the necessary attributes to
declarations in include/common.h, then begins to correct the resulting
compiler warnings.  Some of these were bugs, e.g., "$d" instead of
"%d" and incorrect arguments.  Others were just annoying, like
int-long mismatches on a system where both are 32 bits.  It's worth
fixing the annoying errors to catch the real ones.

Signed-off-by: default avatarAndrew Klossner <andrew@cesa.opbu.xerox.com>
parent a292d226
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment