diff options
author | Raghavendra G <raghavendra@gluster.com> | 2010-12-13 03:33:21 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2010-12-14 19:41:47 -0800 |
commit | 3fd60a81d3a536cfd005e7fe3171d397d1019067 (patch) | |
tree | f14b7f19ccd4c11e6a5248a3c777b453cb6ef50a /xlators/cluster/afr/src/afr-lk-common.c | |
parent | 04fe9457923ff74e9fc396ed13c6a5eef4810493 (diff) |
cluster/replicate: 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/cluster/afr/src/afr-lk-common.c')
-rw-r--r-- | xlators/cluster/afr/src/afr-lk-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/cluster/afr/src/afr-lk-common.c b/xlators/cluster/afr/src/afr-lk-common.c index b213826d03d..d2f7579fc42 100644 --- a/xlators/cluster/afr/src/afr-lk-common.c +++ b/xlators/cluster/afr/src/afr-lk-common.c @@ -1785,7 +1785,7 @@ afr_save_locked_fd (xlator_t *this, fd_t *fd) ret = __afr_save_locked_fd (this, fd); if (ret) { gf_log (this->name, GF_LOG_DEBUG, - "fd=%p could not be saved"); + "fd=%p could not be saved", fd); goto unlock; } } |