summaryrefslogtreecommitdiffstats
path: root/xlators/performance/quick-read/src/quick-read.c
diff options
context:
space:
mode:
authorRaghavendra G <raghavendra@gluster.com>2010-12-13 00:14:12 +0000
committerAnand V. Avati <avati@dev.gluster.com>2010-12-12 23:39:06 -0800
commit5f708e77242b0658f1619cca16e3e679163fb570 (patch)
treeb5fe99023e622b1ce2ee553b2270e9cac5b398d7 /xlators/performance/quick-read/src/quick-read.c
parentcc0c857ceba2bec066cb4167f4c84dfea925546b (diff)
performance/quick-read: fix warnings due to format string mismatches during invocation of gf_log.
Signed-off-by: Raghavendra G <raghavendra@gluster.com> Signed-off-by: Anand V. Avati <avati@dev.gluster.com> BUG: 2211 ((re)introduce warnings for format string/parameter mismatch) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2211
Diffstat (limited to 'xlators/performance/quick-read/src/quick-read.c')
-rw-r--r--xlators/performance/quick-read/src/quick-read.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/performance/quick-read/src/quick-read.c b/xlators/performance/quick-read/src/quick-read.c
index 24e187a789d..b8b799e5c10 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