aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBertrand Simonnet <bsimonnet@google.com>2016-01-19 18:33:40 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-01-19 18:33:40 +0000
commit930d009473b3a1744f76a01d9a0d298b77e39a60 (patch)
treeffa8a149e58d75f29b462836f7721a73b2dbc931
parent81d1e3a79437208eed8cdabb869e5e1eb59faf76 (diff)
parentb173892f346bdcac61ab3c64f5d47dffe56a3729 (diff)
downloadexternal_curl-930d009473b3a1744f76a01d9a0d298b77e39a60.tar.gz
external_curl-930d009473b3a1744f76a01d9a0d298b77e39a60.tar.bz2
external_curl-930d009473b3a1744f76a01d9a0d298b77e39a60.zip
Merge "curl: Fix sign comparaison warning."android-n-preview-2android-n-preview-1
-rw-r--r--Android.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/Android.mk b/Android.mk
index d338b962..6e61c1d9 100644
--- a/Android.mk
+++ b/Android.mk
@@ -12,9 +12,9 @@ version_string := "Android $(PLATFORM_VERSION) $(TARGET_ARCH_VARIANT)"
curl_CFLAGS := -Wpointer-arith -Wwrite-strings -Wunused -Winline \
-Wnested-externs -Wmissing-declarations -Wmissing-prototypes -Wno-long-long \
- -Wfloat-equal -Wno-multichar -Wsign-compare -Wno-format-nonliteral \
+ -Wfloat-equal -Wno-multichar -Wno-sign-compare -Wno-format-nonliteral \
-Wendif-labels -Wstrict-prototypes -Wdeclaration-after-statement \
- -Wno-system-headers -DHAVE_CONFIG_H -DOS='$(version_string)'
+ -Wno-system-headers -DHAVE_CONFIG_H -DOS='$(version_string)' -Werror
curl_includes := \
$(LOCAL_PATH)/include/ \