From 4638dfc1fee80f9338f2941f3cccb17bec63989a Mon Sep 17 00:00:00 2001 From: "Kaleb S. KEITHLEY" Date: Fri, 18 Nov 2016 10:05:12 -0500 Subject: events: use attribute(format(/printf)) to catch fmt string errors and statedump too. Also "const char *" (versus just "char *") for the fmt param. Change-Id: Ic63734a673208a2cd49aebccce7659816e6179e3 BUG: 1399196 Signed-off-by: Kaleb S. KEITHLEY Reviewed-on: https://review.gluster.org/15881 Smoke: Gluster Build System NetBSD-regression: NetBSD Build System CentOS-regression: Gluster Build System --- xlators/debug/io-stats/src/io-stats.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xlators/debug/io-stats') diff --git a/xlators/debug/io-stats/src/io-stats.c b/xlators/debug/io-stats/src/io-stats.c index 7d33c06b680..d3b3136d982 100644 --- a/xlators/debug/io-stats/src/io-stats.c +++ b/xlators/debug/io-stats/src/io-stats.c @@ -3727,7 +3727,7 @@ io_priv (xlator_t *this) max = conf->cumulative.latency[i].max; avg = conf->cumulative.latency[i].avg; - gf_proc_dump_build_key (key, key_prefix_cumulative, + gf_proc_dump_build_key (key, key_prefix_cumulative, "%s", (char *)gf_fop_list[i]); gf_proc_dump_write (key,"%"PRId64",%"PRId64",%.03f,%.03f,%.03f", @@ -3739,7 +3739,7 @@ io_priv (xlator_t *this) max = conf->incremental.latency[i].max; avg = conf->incremental.latency[i].avg; - gf_proc_dump_build_key (key, key_prefix_incremental, + gf_proc_dump_build_key (key, key_prefix_incremental, "%s", (char *)gf_fop_list[i]); gf_proc_dump_write (key,"%"PRId64",%"PRId64",%.03f,%.03f,%.03f", -- cgit