Browse Source

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>
Ilya Dryomov 10 years ago
parent
commit
0668ff52e2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      fs/ceph/addr.c

+ 1 - 1
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);
 	     inode, ceph_vinop(inode), len, locked_page);
 
 
 	if (len > 0) {
 	if (len > 0) {