Home
last modified time | relevance | path

Searched hist:"7 c20342230ff370c397fc4a9c4c1e7a91964bb66" (Results 1 – 1 of 1) sorted by relevance

/openbmc/linux/lib/
H A Dvsprintf.cdiff 7c20342230ff370c397fc4a9c4c1e7a91964bb66 Tue May 29 17:07:35 CDT 2012 Pierre Carrier <pierre@spotify.com> lib/vsprintf.c: "%#o",0 becomes '0' instead of '00'

number()'s behaviour is slighly changed: 0 becomes "0" instead of "00"
when using the flag SPECIAL and base 8.

Before:
Number\Format %o %#o %x %#x
0 0 00 0 0x0
1 1 01 1 0x1
16 20 020 10 0x10

After:
Number\Format %o %#o %x %#x
0 0 0 0 0x0
1 1 01 1 0x1
16 20 020 10 0x10

Signed-off-by: Pierre Carrier <pierre@spotify.com>
Acked-by: Stephen Rothwell <sfr@canb.auug.org.au>
Cc: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>