um: use %lx format specifiers for unsigned longs
authorColin Ian King <[email protected]>
Sat, 23 Jan 2016 19:17:59 +0000 (19:17 +0000)
committerRichard Weinberger <[email protected]>
Sat, 5 Mar 2016 21:21:28 +0000 (22:21 +0100)
commitad32a1f3c36b046b2e7b0361b88c18e3af61419e
tree18ee25114bc51b98a7b93e370016bbb78fc92ea2
parent0834f9cc9f1c5a104e87000378b9cda290c4f406
um: use %lx format specifiers for unsigned longs

static analysis from cppcheck detected %x being used for
unsigned longs:

[arch/x86/um/os-Linux/task_size.c:112]: (warning) %x in format
  string (no. 1) requires 'unsigned int' but the argument type
  is 'unsigned long'.

Use %lx instead of %x

Signed-off-by: Colin Ian King <[email protected]>
Signed-off-by: Richard Weinberger <[email protected]>
arch/x86/um/os-Linux/task_size.c