diff options
author | Adam Lesinski <adamlesinski@google.com> | 2014-11-03 18:03:53 -0800 |
---|---|---|
committer | Adam Lesinski <adamlesinski@google.com> | 2014-11-03 18:06:22 -0800 |
commit | 3fd340028fc24198edb23ddf5eb5a0a100bab745 (patch) | |
tree | 489ffeed9998280d7402b74ed78bcc61d6cd8872 /tools/aapt/Resource.cpp | |
parent | 7fd12db350a341eb7a50759aa329be5281556928 (diff) | |
parent | 78be0498af2b7d5b6855701ef316f488e2de6f14 (diff) |
Merge commit '78be0498' into manualmerge
Conflicts:
libs/androidfw/ResourceTypes.cpp
tools/aapt/Android.mk
tools/aapt/StringPool.cpp
tools/aapt/StringPool.h
Change-Id: I9d69efdfb892032895ace12159d193304f02dc6c
Diffstat (limited to 'tools/aapt/Resource.cpp')
-rw-r--r-- | tools/aapt/Resource.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt/Resource.cpp b/tools/aapt/Resource.cpp index b5590026d9d2..a4f4dd1c5bd8 100644 --- a/tools/aapt/Resource.cpp +++ b/tools/aapt/Resource.cpp @@ -523,7 +523,7 @@ static int validateAttr(const String8& path, const ResTable& table, } if (validChars) { for (size_t i=0; i<len; i++) { - uint16_t c = str[i]; + char16_t c = str[i]; const char* p = validChars; bool okay = false; while (*p) { |