Commit 9ff3f30b authored by Pavel Emelyanov's avatar Pavel Emelyanov

page-xfer: Fix 32-bit compilation

Broken by 3929c853Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 44a0fe49
...@@ -480,7 +480,7 @@ static int write_pages_loc(struct page_xfer *xfer, ...@@ -480,7 +480,7 @@ static int write_pages_loc(struct page_xfer *xfer,
return -1; return -1;
} }
if (ret != len) { if (ret != len) {
pr_err("Only %lu of %lu bytes have been spliced\n", ret, len); pr_err("Only %zu of %lu bytes have been spliced\n", ret, len);
return -1; 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