From 593f0ffe592b446ea5ba2dbecb31cf7f6f27d6cb Mon Sep 17 00:00:00 2001 From: Dan Willemsen Date: Mon, 25 Jan 2016 13:55:54 -0800 Subject: [PATCH] Fix source file typo I am changing the build system to catch typos such as these -- it will soon warn when entries in LOCAL_SRC_FILES are unused. (to compile native binaries) Change-Id: Ic95e92a5871dbf2d679b32852a4e8afaaf17e55d --- Android.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Android.mk b/Android.mk index 64f64ab..277b17f 100644 --- a/Android.mk +++ b/Android.mk @@ -5,7 +5,7 @@ include $(CLEAR_VARS) LOCAL_MODULE := libbinary_parse LOCAL_CPP_EXTENSION := .cc LOCAL_SRC_FILES:= \ - src/binary_parse/cached_paged_byte_array.cc, \ + src/binary_parse/cached_paged_byte_array.cc \ src/binary_parse/range_checked_byte_ptr.cc LOCAL_CPPFALGS := -Wsign-compare include $(BUILD_SHARED_LIBRARY)