diff --git a/[refs] b/[refs] index bdf7accea7e7..bff7257092d1 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: b560177f3e1c6b2d75b220d41ae72636243475c4 +refs/heads/master: d471a4b9f2ac327c15300ba2b2bda2c6d6fd03bc diff --git a/trunk/lib/vsprintf.c b/trunk/lib/vsprintf.c index 24112e5a5780..7376b7c55ffe 100644 --- a/trunk/lib/vsprintf.c +++ b/trunk/lib/vsprintf.c @@ -408,12 +408,12 @@ enum format_type { }; struct printf_spec { - u16 type; - s16 field_width; /* width of output field */ + u8 type; /* format_type enum */ u8 flags; /* flags to number() */ - u8 base; - s8 precision; /* # of digits/chars */ - u8 qualifier; + u8 base; /* number base, 8, 10 or 16 only */ + u8 qualifier; /* number qualifier, one of 'hHlLtzZ' */ + s16 field_width; /* width of output field */ + s16 precision; /* # of digits/chars */ }; static char *number(char *buf, char *end, unsigned long long num,