diff options
author | Christoph Hellwig <hch@lst.de> | 2007-09-10 20:02:22 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@hera.kernel.org> | 2007-09-10 20:02:22 -0400 |
commit | 9433063bcb4b3c0c9e5ef3c24a811b63084dedb4 (patch) | |
tree | d41ad9459331e4a611654e0c5c5e8f9dd1eb6cef /fs/btrfs/file.c | |
parent | a8c450b211c010ac55190da23ceb6b39b393f411 (diff) |
[PATCH] btrfs: fix printk format warning
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/file.c')
-rw-r--r-- | fs/btrfs/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c index 77f1950b0aa0..c26ca54ed4de 100644 --- a/fs/btrfs/file.c +++ b/fs/btrfs/file.c | |||
@@ -174,7 +174,7 @@ static int dirty_and_release_pages(struct btrfs_trans_handle *trans, | |||
174 | hint_block = 0; | 174 | hint_block = 0; |
175 | 175 | ||
176 | if ((end_of_last_block & 4095) == 0) { | 176 | if ((end_of_last_block & 4095) == 0) { |
177 | printk("strange end of last %Lu %lu %Lu\n", start_pos, write_bytes, end_of_last_block); | 177 | printk("strange end of last %Lu %zu %Lu\n", start_pos, write_bytes, end_of_last_block); |
178 | } | 178 | } |
179 | set_extent_uptodate(em_tree, start_pos, end_of_last_block, GFP_NOFS); | 179 | set_extent_uptodate(em_tree, start_pos, end_of_last_block, GFP_NOFS); |
180 | 180 | ||