From: Eric Engestrom Date: Fri, 8 Mar 2019 20:56:38 +0000 (+0000) Subject: android: fix missing backspace for line continuation X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f67c8701799ec29083f40373f74027f9b1d6dbc6;p=mesa.git android: fix missing backspace for line continuation Reported-by: Clayton Craft Bug: https://bugs.freedesktop.org/show_bug.cgi?id=109944 Fixes: e1d81decf7a093867f05 "build: make passing an incorrect pointer type a hard error" Signed-off-by: Eric Engestrom --- diff --git a/Android.common.mk b/Android.common.mk index 35ef2bfeb82..36d97c52dd1 100644 --- a/Android.common.mk +++ b/Android.common.mk @@ -32,7 +32,7 @@ LOCAL_C_INCLUDES += \ MESA_VERSION := $(shell cat $(MESA_TOP)/VERSION) LOCAL_CFLAGS += \ -Wno-error \ - -Werror=incompatible-pointer-types + -Werror=incompatible-pointer-types \ -Wno-unused-parameter \ -Wno-pointer-arith \ -Wno-missing-field-initializers \