[Spice-devel] [RFC PATCH spice-streaming-agent] Remove paranoid warning
Frediano Ziglio
fziglio at redhat.com
Fri Feb 23 10:15:47 UTC 2018
Fields are initialized to zero if not explicitly specified which is
actually what you usually want so there's no reason to have the
compiler to generate warning for this.
---
m4/spice-compile-warnings.m4 | 1 +
src/spice-streaming-agent.cpp | 11 ++++-------
2 files changed, 5 insertions(+), 7 deletions(-)
diff --git a/m4/spice-compile-warnings.m4 b/m4/spice-compile-warnings.m4
index 66d7179..5f415cd 100644
--- a/m4/spice-compile-warnings.m4
+++ b/m4/spice-compile-warnings.m4
@@ -108,6 +108,7 @@ AC_DEFUN([SPICE_COMPILE_WARNINGS],[
# So we have -W enabled, and then have to explicitly turn off...
gl_WARN_ADD([-Wno-sign-compare])
gl_WARN_ADD([-Wno-unused-parameter])
+ gl_WARN_ADD([-Wno-missing-field-initializers])
# We can't enable this due to horrible spice_usb_device_get_description
# signature
gl_WARN_ADD([-Wno-format-nonliteral])
--
2.14.3
More information about the Spice-devel
mailing list