m68k/allmodconfig:

drivers/md/bcache/debug.c: In function ‘bch_pbtree’:
drivers/md/bcache/debug.c:86: warning: format ‘%li’ expects type ‘long int’, 
but argument 4 has type ‘size_t’

Signed-off-by: Geert Uytterhoeven <[email protected]>
---
 drivers/md/bcache/debug.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/md/bcache/debug.c b/drivers/md/bcache/debug.c
index 141a5ca..210c985 100644
--- a/drivers/md/bcache/debug.c
+++ b/drivers/md/bcache/debug.c
@@ -82,7 +82,7 @@ struct keyprint_hack bch_pbtree(const struct btree *b)
 {
        struct keyprint_hack r;
 
-       snprintf(r.s, 40, "%li level %i/%i", PTR_BUCKET_NR(b->c, &b->key, 0),
+       snprintf(r.s, 40, "%zu level %i/%i", PTR_BUCKET_NR(b->c, &b->key, 0),
                 b->level, b->c->root ? b->c->root->level : -1);
        return r;
 }
-- 
1.7.0.4

--
To unsubscribe from this list: send the line "unsubscribe linux-bcache" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to