summaryrefslogtreecommitdiffstats
path: root/libass
diff options
context:
space:
mode:
authorRodger Combs <rodger.combs@gmail.com>2017-09-06 07:28:02 -0500
committerOleg Oshmyan <chortos@inbox.lv>2017-10-27 01:01:25 +0300
commitf4cc39fb8e1741523aae7616a49797008c2ae1cb (patch)
treeb2c7ae2d748f55c5f75d5304fec859b683bae788 /libass
parentd06e9a8aec096df62ea614cc9b2f53483f9ecc31 (diff)
downloadlibass-f4cc39fb8e1741523aae7616a49797008c2ae1cb.tar.bz2
libass-f4cc39fb8e1741523aae7616a49797008c2ae1cb.tar.xz
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 <chortos@inbox.lv>
Diffstat (limited to 'libass')
-rw-r--r--libass/Makefile.am3
1 files changed, 2 insertions, 1 deletions
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