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 | |
parent | a8c450b211c010ac55190da23ceb6b39b393f411 (diff) | |
download | talos-op-linux-9433063bcb4b3c0c9e5ef3c24a811b63084dedb4.tar.gz talos-op-linux-9433063bcb4b3c0c9e5ef3c24a811b63084dedb4.zip |
[PATCH] btrfs: fix printk format warning
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Chris Mason <chris.mason@oracle.com>
-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, hint_block = 0; if ((end_of_last_block & 4095) == 0) { - printk("strange end of last %Lu %lu %Lu\n", start_pos, write_bytes, end_of_last_block); + printk("strange end of last %Lu %zu %Lu\n", start_pos, write_bytes, end_of_last_block); } set_extent_uptodate(em_tree, start_pos, end_of_last_block, GFP_NOFS); |