summaryrefslogtreecommitdiff
path: root/android/PhoneticStringUtilsTest.cpp
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2010-11-15 11:37:04 -0800
committerKenny Root <kroot@google.com>2010-11-15 11:37:36 -0800
commit0b161e0ce405b617a85d0f1b717bd3d7df056ced (patch)
treed9776d5101ed49ea1eb8d3717067eae938aca016 /android/PhoneticStringUtilsTest.cpp
parent6c75f0d20ef5ade654dc32eae196b6d212e9d353 (diff)
Update to new Unicode.h includes
Change-Id: Ibb9ca5833f9c0b3313ff0e9bc70348d268aaf4e2
Diffstat (limited to 'android/PhoneticStringUtilsTest.cpp')
-rw-r--r--android/PhoneticStringUtilsTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/PhoneticStringUtilsTest.cpp b/android/PhoneticStringUtilsTest.cpp
index 2f0e9ac..9885823 100644
--- a/android/PhoneticStringUtilsTest.cpp
+++ b/android/PhoneticStringUtilsTest.cpp
@@ -89,7 +89,7 @@ void TestExecutor::DoOneTest(void (TestExecutor::*test)()) {
#define TEST_GET_UTF32AT(src, index, expected_next, expected_value) \
({ \
size_t next; \
- int32_t ret = utf32_at(src, strlen(src), index, &next); \
+ int32_t ret = utf32_from_utf8_at(src, strlen(src), index, &next); \
if (ret < 0) { \
printf("getUtf32At() returned negative value (src: %s, index: %d)\n", \
(src), (index)); \