summaryrefslogtreecommitdiffstats
path: root/vm/Debugger.c
diff options
context:
space:
mode:
authorRobert CH Chou <Robert_CH_Chou@acer.com.tw>2010-09-30 17:20:07 +0800
committerRobert CH Chou <Robert_CH_Chou@acer.com.tw>2010-09-30 17:21:01 +0800
commita6ef944d938832ea2768e0b165d9cf325c0f65ae (patch)
tree7b386236b66564918ce6a15ac13b0061d0d93aa9 /vm/Debugger.c
parent60cc993e5afb3327482b172cc7e54c469b231741 (diff)
downloadandroid_dalvik-a6ef944d938832ea2768e0b165d9cf325c0f65ae.tar.gz
android_dalvik-a6ef944d938832ea2768e0b165d9cf325c0f65ae.tar.bz2
android_dalvik-a6ef944d938832ea2768e0b165d9cf325c0f65ae.zip
Remove obsolete variable "len" to avoid compile failed
Change-Id: Ibf759acef58f6a3e404bfc4be13505774b3d39ad
Diffstat (limited to 'vm/Debugger.c')
-rw-r--r--vm/Debugger.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm/Debugger.c b/vm/Debugger.c
index 2f57046b7..ad4025ed8 100644
--- a/vm/Debugger.c
+++ b/vm/Debugger.c
@@ -3044,8 +3044,8 @@ void dvmDbgDdmSendChunk(int type, size_t len, const u1* buf)
void dvmDbgDdmSendChunkV(int type, const struct iovec* iov, int iovcnt)
{
if (gDvm.jdwpState == NULL) {
- LOGV("Debugger thread not active, ignoring DDM send (t=0x%08x l=%d)\n",
- type, len);
+ LOGV("Debugger thread not active, ignoring DDM send (t=0x%08x)\n",
+ type);
return;
}