diff options
author | Colin Ian King <colin.king@canonical.com> | 2016-01-23 19:17:59 +0000 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2016-03-05 22:21:28 +0100 |
commit | ad32a1f3c36b046b2e7b0361b88c18e3af61419e (patch) | |
tree | 18ee25114bc51b98a7b93e370016bbb78fc92ea2 /arch/x86/um | |
parent | 0834f9cc9f1c5a104e87000378b9cda290c4f406 (diff) | |
download | linux-ad32a1f3c36b046b2e7b0361b88c18e3af61419e.tar.bz2 |
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 <colin.king@canonical.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch/x86/um')
-rw-r--r-- | arch/x86/um/os-Linux/task_size.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/um/os-Linux/task_size.c b/arch/x86/um/os-Linux/task_size.c index 8502ad30e61b..5adb6a2fd117 100644 --- a/arch/x86/um/os-Linux/task_size.c +++ b/arch/x86/um/os-Linux/task_size.c @@ -109,7 +109,7 @@ unsigned long os_get_top_address(void) exit(1); } - printf("0x%x\n", bottom << UM_KERN_PAGE_SHIFT); + printf("0x%lx\n", bottom << UM_KERN_PAGE_SHIFT); printf("Locating the top of the address space ... "); fflush(stdout); @@ -134,7 +134,7 @@ out: exit(1); } top <<= UM_KERN_PAGE_SHIFT; - printf("0x%x\n", top); + printf("0x%lx\n", top); return top; } |