[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220111175438.21901-12-sthemmin@microsoft.com>
Date: Tue, 11 Jan 2022 09:54:38 -0800
From: Stephen Hemminger <stephen@...workplumber.org>
To: netdev@...r.kernel.org
Cc: Stephen Hemminger <sthemmin@...rosoft.com>,
Stephen Hemminger <stephen@...workplumber.org>
Subject: [PATCH v2 iproute2-next 11/11] json_print: suppress clang format warning
Clang complains about using non-format string in print_color_tv.
The ideal fix would be to put format attribute on all the print_XXX functions
in json_print.h. But that leads to furthur complications because the existing
code may pass a NULL as format if the format is unused since the print
is being done only for JSON output.
The comprimise is to just disable the warning for the one place
it shows up.
Signed-off-by: Stephen Hemminger <stephen@...workplumber.org>
---
lib/json_print.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/lib/json_print.c b/lib/json_print.c
index e3a88375fe7c..741acdcff990 100644
--- a/lib/json_print.c
+++ b/lib/json_print.c
@@ -299,6 +299,13 @@ int print_color_null(enum output_type type,
return ret;
}
+/*
+ * This function does take printf style argument but applying
+ * format attribute to causes more warnings since the print_XXX
+ * functions are used with NULL for format if unused.
+ */
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wformat-nonliteral"
int print_color_tv(enum output_type type,
enum color_attr color,
const char *key,
@@ -311,6 +318,7 @@ int print_color_tv(enum output_type type,
return print_color_float(type, color, key, fmt, time);
}
+#pragma GCC diagnostic pop
/* Print line separator (if not in JSON mode) */
void print_nl(void)
--
2.30.2
Powered by blists - more mailing lists