staging: android: ion: fix some format strings
authorRasmus Villemoes <linux@rasmusvillemoes.dk>
Fri, 20 Feb 2015 13:13:19 +0000 (14:13 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 2 Mar 2015 02:46:15 +0000 (18:46 -0800)
commitb5693964eaa2a9bb6a6e1b277c9321b4fc511825
tree22e75c2e473f903a8901922d154fe239e247cd93
parentd9dfb48f23df4d7b9ec082f6657ab5add7f1682a
staging: android: ion: fix some format strings

C99 says that a precision which is simply '.' with no following digits
or * should be interpreted as 0, which means that these format strings
actually mean 'print 16 spaces'. However, the kernel's printf
implementation treats this case as if the precision was omitted. Don't
rely on that quirk.

Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/android/ion/ion.c