Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 189895
b: refs/heads/master
c: d471a4b
h: refs/heads/master
i:
  189893: 354e812
  189891: d285739
  189887: 98f0fd4
v: v3
  • Loading branch information
Linus Torvalds committed Apr 15, 2010
1 parent 989ad95 commit d1fe730
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b560177f3e1c6b2d75b220d41ae72636243475c4
refs/heads/master: d471a4b9f2ac327c15300ba2b2bda2c6d6fd03bc
10 changes: 5 additions & 5 deletions trunk/lib/vsprintf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit d1fe730

Please sign in to comment.