From f4cc39fb8e1741523aae7616a49797008c2ae1cb Mon Sep 17 00:00:00 2001 From: Rodger Combs Date: Wed, 6 Sep 2017 07:28:02 -0500 Subject: Silence missing-field-initializers warning Clang gives this warning for the universal initializer `={0}`: https://bugs.llvm.org/show_bug.cgi?id=21689 Signed-off-by: Oleg Oshmyan --- libass/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libass/Makefile.am') diff --git a/libass/Makefile.am b/libass/Makefile.am index b72ab67..e31e54c 100644 --- a/libass/Makefile.am +++ b/libass/Makefile.am @@ -1,6 +1,7 @@ AM_CFLAGS = -std=gnu99 -Wall -Wextra -Wno-sign-compare -Wno-unused-parameter \ -Werror-implicit-function-declaration -Wstrict-prototypes \ - -Wpointer-arith -Wredundant-decls -D_GNU_SOURCE + -Wpointer-arith -Wredundant-decls -Wno-missing-field-initializers\ + -D_GNU_SOURCE LIBASS_LT_CURRENT = 9 LIBASS_LT_REVISION = 1 -- cgit v1.2.3