diff options
author | Raghavendra G <raghavendra@gluster.com> | 2010-12-13 03:34:21 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2010-12-14 19:42:05 -0800 |
commit | b754e531b48113596fddcd7d0b433ebcbf016c27 (patch) | |
tree | d668e954fb91f087643e5a0e57f7f6270177358b /xlators | |
parent | 361c804e9d70bd5a1c38eae1944635ca127c9ed9 (diff) |
mgmt: 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')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-volgen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-volgen.c b/xlators/mgmt/glusterd/src/glusterd-volgen.c index 0dd2f756c..257f32a31 100644 --- a/xlators/mgmt/glusterd/src/glusterd-volgen.c +++ b/xlators/mgmt/glusterd/src/glusterd-volgen.c @@ -1113,7 +1113,7 @@ client_graph_builder (glusterfs_graph_t *graph, glusterd_volinfo_t *volinfo, volinfo->brick_count % volinfo->sub_count != 0) { gf_log ("", GF_LOG_ERROR, "volume inconsistency: " - "total number of bricks (%d) is not divisible with ", + "total number of bricks (%d) is not divisible with " "number of bricks per cluster (%d) in a multi-cluster " "setup", volinfo->brick_count, volinfo->sub_count); |