diff options
Diffstat (limited to 'vm/Debugger.c')
-rw-r--r-- | vm/Debugger.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vm/Debugger.c b/vm/Debugger.c index 7706efb50..2cea85c6c 100644 --- a/vm/Debugger.c +++ b/vm/Debugger.c @@ -3062,8 +3062,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; } |