aboutsummaryrefslogtreecommitdiffstats
path: root/meta-dpdk/recipes-extended/dpdk-dev-libibverbs/files/init_c.patch
blob: a7708d7c21de767f0750d10a3052a8be6fc435eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
dpdk-dev-libibverbs: suppress gcc7 warnings

We know that format-truncation in init.c is okay.

Upstream-Status: Pending

Signed-off-by: Joe Slater <joe.slater@windriver.com>


--- a/src/init.c
+++ b/src/init.c
@@ -31,6 +31,11 @@
  * SOFTWARE.
  */
 
+/* For this file we know we can ignore this warning. */
+#if __GNUC__ > 6
+#pragma GCC diagnostic ignored "-Wformat-truncation"
+#endif
+
 #if HAVE_CONFIG_H
 #  include <config.h>
 #endif /* HAVE_CONFIG_H */