diff options
author | Ilya Dryomov <idryomov@redhat.com> | 2014-12-19 13:10:10 +0300 |
---|---|---|
committer | Ilya Dryomov <idryomov@redhat.com> | 2015-01-08 20:36:56 +0300 |
commit | 0668ff52e2fbca869c579025612e9bcfc4edd40e (patch) | |
tree | 3e6e6dee6c321e2a57aadaabb4de4077366b6d48 /fs/ceph | |
parent | b1940cd21c0f4abdce101253e860feff547291b0 (diff) |
ceph: use %zu for len in ceph_fill_inline_data()
len is size_t, should be printed with %zu.
Signed-off-by: Ilya Dryomov <idryomov@redhat.com>
Diffstat (limited to 'fs/ceph')
-rw-r--r-- | fs/ceph/addr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/addr.c b/fs/ceph/addr.c index f5013d92a7e..c81c0e00458 100644 --- a/fs/ceph/addr.c +++ b/fs/ceph/addr.c @@ -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) { |