diff options
author | Eric Engestrom <[email protected]> | 2019-03-08 20:56:38 +0000 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-03-08 21:14:24 +0000 |
commit | f67c8701799ec29083f40373f74027f9b1d6dbc6 (patch) | |
tree | 85f944d881fa410f5b8928bc0a6f5634d6b00701 /Android.common.mk | |
parent | 8a8742d32799eeb52eb7dbd4fd134a028b099d4d (diff) |
android: fix missing backspace for line continuation
Reported-by: Clayton Craft <[email protected]>
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 <[email protected]>
Diffstat (limited to 'Android.common.mk')
-rw-r--r-- | Android.common.mk | 2 |
1 files changed, 1 insertions, 1 deletions
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 \ |