aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2016-01-25 13:55:54 -0800
committerDan Willemsen <dwillemsen@google.com>2016-01-25 13:55:54 -0800
commit593f0ffe592b446ea5ba2dbecb31cf7f6f27d6cb (patch)
treea5506f73d1ee63ec0aef62c2de71a67b76d0bc69
parentafc6ebdcba72e4eeeaafab1547c19025fcec5d1f (diff)
downloadpiex-593f0ffe592b446ea5ba2dbecb31cf7f6f27d6cb.tar.gz
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
-rw-r--r--Android.mk2
1 files changed, 1 insertions, 1 deletions
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)