diff options
| author | Raghavendra G <raghavendra@gluster.com> | 2010-12-13 00:14:12 +0000 | 
|---|---|---|
| committer | Anand V. Avati <avati@dev.gluster.com> | 2010-12-12 23:39:06 -0800 | 
| commit | 5f708e77242b0658f1619cca16e3e679163fb570 (patch) | |
| tree | b5fe99023e622b1ce2ee553b2270e9cac5b398d7 | |
| parent | cc0c857ceba2bec066cb4167f4c84dfea925546b (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
| -rw-r--r-- | xlators/performance/quick-read/src/quick-read.c | 2 | 
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 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  | 
