32 lines
1.2 KiB
Diff
32 lines
1.2 KiB
Diff
|
From 6dbeac0371f3f2b42c0b428ba9f95b4ac3bc889d Mon Sep 17 00:00:00 2001
|
||
|
From: Xavi Hernandez <xhernandez@redhat.com>
|
||
|
Date: Thu, 8 Nov 2018 18:42:26 +0100
|
||
|
Subject: [PATCH 444/444] features/shard: fix formatting warning
|
||
|
|
||
|
BUG: 1603118
|
||
|
Change-Id: I6191351f824901a45416ffe7610ad2b964645012
|
||
|
Signed-off-by: Xavi Hernandez <xhernandez@redhat.com>
|
||
|
Reviewed-on: https://code.engineering.redhat.com/gerrit/155395
|
||
|
Tested-by: RHGS Build Bot <nigelb@redhat.com>
|
||
|
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
|
||
|
---
|
||
|
xlators/features/shard/src/shard.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/xlators/features/shard/src/shard.c b/xlators/features/shard/src/shard.c
|
||
|
index fb88315..5b72399 100644
|
||
|
--- a/xlators/features/shard/src/shard.c
|
||
|
+++ b/xlators/features/shard/src/shard.c
|
||
|
@@ -6832,7 +6832,7 @@ shard_priv_dump (xlator_t *this)
|
||
|
gf_uint64_2human_readable (priv->block_size));
|
||
|
gf_proc_dump_write ("inode-count", "%d", priv->inode_count);
|
||
|
gf_proc_dump_write ("ilist_head", "%p", &priv->ilist_head);
|
||
|
- gf_proc_dump_write ("lru-max-limit", "%d", priv->lru_limit);
|
||
|
+ gf_proc_dump_write ("lru-max-limit", "%" PRIu64, priv->lru_limit);
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
--
|
||
|
1.8.3.1
|
||
|
|