summaryrefslogtreecommitdiffstats
path: root/luni
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-02-21 09:58:17 -0800
committerElliott Hughes <enh@google.com>2014-02-21 09:58:17 -0800
commitb717644f67c8bba023e581a54cdd99e5c2ec7e28 (patch)
treee1184a0d0a661b09a0191f020984a69bf65603f0 /luni
parent84c957a479f28ebf8b15c757add4be75a3960ceb (diff)
downloadlibcore-b717644f67c8bba023e581a54cdd99e5c2ec7e28.zip
libcore-b717644f67c8bba023e581a54cdd99e5c2ec7e28.tar.gz
libcore-b717644f67c8bba023e581a54cdd99e5c2ec7e28.tar.bz2
Fix NativeBreakIterator_cloneImpl return type.
Change-Id: I44e36a0312973de83a2ee7d09483ad911e167604
Diffstat (limited to 'luni')
-rw-r--r--luni/src/main/native/libcore_icu_NativeBreakIterator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/luni/src/main/native/libcore_icu_NativeBreakIterator.cpp b/luni/src/main/native/libcore_icu_NativeBreakIterator.cpp
index ce8a72c..0c8c3c9 100644
--- a/luni/src/main/native/libcore_icu_NativeBreakIterator.cpp
+++ b/luni/src/main/native/libcore_icu_NativeBreakIterator.cpp
@@ -119,7 +119,7 @@ class BreakIteratorAccessor {
} \
return reinterpret_cast<uintptr_t>(it)
-static jint NativeBreakIterator_cloneImpl(JNIEnv* env, jclass, jlong address) {
+static jlong NativeBreakIterator_cloneImpl(JNIEnv* env, jclass, jlong address) {
BreakIteratorAccessor it(env, address);
return reinterpret_cast<uintptr_t>(it->clone());
}