Skip to content

Commit

Permalink
ceph: use %zu for len in ceph_fill_inline_data()
Browse files Browse the repository at this point in the history
len is size_t, should be printed with %zu.

Signed-off-by: Ilya Dryomov <[email protected]>
  • Loading branch information
idryomov committed Jan 8, 2015
1 parent b1940cd commit 0668ff5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/ceph/addr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1416,7 +1416,7 @@ void ceph_fill_inline_data(struct inode *inode, struct page *locked_page,
}
}

dout("fill_inline_data %p %llx.%llx len %lu locked_page %p\n",
dout("fill_inline_data %p %llx.%llx len %zu locked_page %p\n",
inode, ceph_vinop(inode), len, locked_page);

if (len > 0) {
Expand Down

0 comments on commit 0668ff5

Please sign in to comment.