summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorPatrick Scott <phanna@android.com>2009-05-27 12:53:20 -0400
committerNick Pelly <npelly@google.com>2009-05-29 16:36:32 -0700
commit9b90fd4fa11eb32403f99c60d23abe4d9c5bf8d5 (patch)
treef450176fab5250c327c7f334a6665dfef1fc77c6 /core
parentc790096ad32d9f34263f31c502404e31e3c175db (diff)
downloadframeworks_base-9b90fd4fa11eb32403f99c60d23abe4d9c5bf8d5.zip
frameworks_base-9b90fd4fa11eb32403f99c60d23abe4d9c5bf8d5.tar.gz
frameworks_base-9b90fd4fa11eb32403f99c60d23abe4d9c5bf8d5.tar.bz2
Fix the boot. The signature needed a V at the end.
Diffstat (limited to 'core')
-rw-r--r--core/jni/android_bluetooth_BluetoothSocket.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/jni/android_bluetooth_BluetoothSocket.cpp b/core/jni/android_bluetooth_BluetoothSocket.cpp
index 08f9cb6..dc4c1d4 100644
--- a/core/jni/android_bluetooth_BluetoothSocket.cpp
+++ b/core/jni/android_bluetooth_BluetoothSocket.cpp
@@ -297,7 +297,7 @@ static void destroyNative(JNIEnv *env, jobject obj) {
static JNINativeMethod sMethods[] = {
{"initSocketNative", "()V", (void*) initSocketNative},
{"initSocketFromFdNative", "(I)V", (void*) initSocketFromFdNative},
- {"connectNative", "(Ljava/lang/String;II)", (void *) connectNative},
+ {"connectNative", "(Ljava/lang/String;II)V", (void *) connectNative},
{"bindListenNative", "(I)V", (void *) bindListenNative},
{"acceptNative", "(I)Landroid/bluetooth/BluetoothSocket;", (void *) acceptNative},
{"availableNative", "()I", (void *) availableNative},