summaryrefslogtreecommitdiffstats
path: root/vm/Debugger.c
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2010-10-12 01:56:16 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2010-10-12 01:56:16 -0700
commit5051928e9461cf4f73d578ad3189c9b8d8b03886 (patch)
tree3ec6b7ce9348f847af78d9f7c8a64454dc3e0400 /vm/Debugger.c
parent18b805ceb235288eabd5756319f477af9401181a (diff)
parent643b045edcec8fe5b2b9b6f2f95529214f9d0dd2 (diff)
downloadandroid_dalvik-5051928e9461cf4f73d578ad3189c9b8d8b03886.tar.gz
android_dalvik-5051928e9461cf4f73d578ad3189c9b8d8b03886.tar.bz2
android_dalvik-5051928e9461cf4f73d578ad3189c9b8d8b03886.zip
am 643b045e: am 65da91cf: am 16926bc4: Merge "Remove obsolete variable "len" to avoid compile failed"
Merge commit '643b045edcec8fe5b2b9b6f2f95529214f9d0dd2' into dalvik-dev * commit '643b045edcec8fe5b2b9b6f2f95529214f9d0dd2': Remove obsolete variable "len" to avoid compile failed
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 4f392360b..139146651 100644
--- a/vm/Debugger.c
+++ b/vm/Debugger.c
@@ -3064,8 +3064,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;
}