From 5f708e77242b0658f1619cca16e3e679163fb570 Mon Sep 17 00:00:00 2001 From: Raghavendra G Date: Mon, 13 Dec 2010 00:14:12 +0000 Subject: performance/quick-read: fix warnings due to format string mismatches during invocation of gf_log. Signed-off-by: Raghavendra G Signed-off-by: Anand V. Avati BUG: 2211 ((re)introduce warnings for format string/parameter mismatch) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2211 --- xlators/performance/quick-read/src/quick-read.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xlators/performance/quick-read/src/quick-read.c b/xlators/performance/quick-read/src/quick-read.c index 24e187a78..b8b799e5c 100644 --- a/xlators/performance/quick-read/src/quick-read.c +++ b/xlators/performance/quick-read/src/quick-read.c @@ -2551,7 +2551,7 @@ reconfigure (xlator_t *this, dict_t *options) goto out; } gf_log (this->name, GF_LOG_DEBUG, - "Reconfiguring cache-siz to %d", cache_size); + "Reconfiguring cache-siz to %"PRIu64, cache_size); conf->cache_size = cache_size; } else -- cgit