It doesn't matter much, but it's probably best to keep these in sync with the kernel code. Signed-off-by: Rasmus Villemoes <rv@xxxxxxxxxxxxxxxxxx> --- check_kernel_printf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/check_kernel_printf.c b/check_kernel_printf.c index 4a4ee71..e321691 100644 --- a/check_kernel_printf.c +++ b/check_kernel_printf.c @@ -38,11 +38,11 @@ static int my_id; typedef unsigned char u8; typedef signed short s16; -#define ZEROPAD 1 /* pad with zero */ -#define SIGN 2 /* unsigned/signed long */ +#define SIGN 1 /* unsigned/signed, must be 1 */ +#define LEFT 2 /* left justified */ #define PLUS 4 /* show plus */ #define SPACE 8 /* space if plus */ -#define LEFT 16 /* left justified */ +#define ZEROPAD 16 /* pad with zero, must be 16 == '0' - ' ' */ #define SMALL 32 /* use lowercase in hex (must be 32 == 0x20) */ #define SPECIAL 64 /* prefix hex with "0x", octal with "0" */ -- 2.6.1 -- To unsubscribe from this list: send the line "unsubscribe smatch" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html