summaryrefslogtreecommitdiffstats
path: root/service/jni
diff options
context:
space:
mode:
authorPrerepa Viswanadham <dham@google.com>2015-07-21 11:16:37 -0700
committerPrerepa Viswanadham <dham@google.com>2015-07-21 13:08:50 -0700
commitaea1299e72516fa37f53db849ecb2619eea2be4b (patch)
tree4b8c4e49bb450e8ab17fe4da7e92ba943ddf31ec /service/jni
parentc2b197d7475ccfbcc84cab83c57ba4f678e67db8 (diff)
downloadandroid_frameworks_opt_net_wifi-aea1299e72516fa37f53db849ecb2619eea2be4b.tar.gz
android_frameworks_opt_net_wifi-aea1299e72516fa37f53db849ecb2619eea2be4b.tar.bz2
android_frameworks_opt_net_wifi-aea1299e72516fa37f53db849ecb2619eea2be4b.zip
Fix typo in method name
Bug: 22634960 Change-Id: I3ebc3fb998f387a4eb4521cfc60409b64b2a2f64
Diffstat (limited to 'service/jni')
-rw-r--r--service/jni/com_android_server_wifi_WifiNative.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/jni/com_android_server_wifi_WifiNative.cpp b/service/jni/com_android_server_wifi_WifiNative.cpp
index 8253c4eee..c48793622 100644
--- a/service/jni/com_android_server_wifi_WifiNative.cpp
+++ b/service/jni/com_android_server_wifi_WifiNative.cpp
@@ -2126,7 +2126,7 @@ static void onRssiThresholdbreached(wifi_request_id id, u8 *cur_bssid, s8 cur_rs
JNIEnv *env = NULL;
mVM->AttachCurrentThread(&env, NULL);
//ALOGD("onRssiThresholdbreached called, vm = %p, obj = %p, env = %p", mVM, mCls, env);
- reportEvent(env, mCls, "onRssiThresholdbreached", "(IB)V", id, cur_rssi);
+ reportEvent(env, mCls, "onRssiThresholdBreached", "(IB)V", id, cur_rssi);
}
static jint android_net_wifi_start_rssi_monitoring_native(JNIEnv *env, jclass cls, jint iface,