Commit 91b48d12 authored by Alexander Kartashov's avatar Alexander Kartashov Committed by Pavel Emelyanov

cr-dump.c: fixed a format string warning on ARM

Use a PRI* format specifier to convert an integer of known size
to a string.
Signed-off-by: 's avatarAlexander Kartashov <alekskartashov@parallels.com>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 3c3a249e
......@@ -338,7 +338,7 @@ static int check_sysvipc_map_dump(pid_t pid, VmaEntry *vma)
if (current_ns_mask & CLONE_NEWIPC)
return 0;
pr_err("Task %d with SysVIPC shmem map @%lx doesn't live in IPC ns\n",
pr_err("Task %d with SysVIPC shmem map @%"PRIx64" doesn't live in IPC ns\n",
pid, vma->start);
return -1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment