2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-30 05:48:05 +00:00

dedup: Plring iov->len + ulong with %lu format

Fix for the previous patch :\

Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
Pavel Emelyanov 2014-03-07 17:51:38 +04:00
parent 0176b8afd0
commit 21be99515a

View File

@ -119,7 +119,7 @@ int punch_hole(struct page_read *pr, unsigned long off, unsigned long len,
struct iovec * bunch = &pr->bunch; struct iovec * bunch = &pr->bunch;
if (!cleanup && can_extend_batch(bunch, off, len)) { if (!cleanup && can_extend_batch(bunch, off, len)) {
pr_debug("pr%d:Extend bunch len from %zu to %zu\n", pr->id, pr_debug("pr%d:Extend bunch len from %zu to %lu\n", pr->id,
bunch->iov_len, bunch->iov_len + len); bunch->iov_len, bunch->iov_len + len);
bunch->iov_len += len; bunch->iov_len += len;
} else { } else {