Commit a9484a91 authored by Pavel Emelyanov's avatar Pavel Emelyanov

shmem: Fix format of printing shmem addresses

Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 5f9acc8d
...@@ -76,7 +76,7 @@ int collect_shmem(int pid, VmaEntry *vi) ...@@ -76,7 +76,7 @@ int collect_shmem(int pid, VmaEntry *vi)
if (!si) if (!si)
return -1; return -1;
pr_info("Add new shmem 0x%"PRIx64" (0x0160x%"PRIx64"-0x0160x%"PRIx64")\n", pr_info("Add new shmem 0x%"PRIx64" (0x%016"PRIx64"-0x%016"PRIx64")\n",
vi->shmid, vi->start, vi->end); vi->shmid, vi->start, vi->end);
si->start = vi->start; si->start = vi->start;
......
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