diff options
| author | Jean-Baptiste Queru <jbq@google.com> | 2010-10-11 08:07:39 -0700 |
|---|---|---|
| committer | Android Git Automerger <android-git-automerger@android.com> | 2010-10-11 08:07:39 -0700 |
| commit | 65da91cf96f8e567db9fc1221d2dcb12bad2ab80 (patch) | |
| tree | 3a681f35d036fac164efacfc6ed7a8aec7b47ac9 /vm/Debugger.c | |
| parent | 7876eb7d797f5c3937b7d1be34f81e9aa3b865e9 (diff) | |
| parent | 16926bc4382640b73e439f678f675444d0d39e8f (diff) | |
| download | android_dalvik-65da91cf96f8e567db9fc1221d2dcb12bad2ab80.tar.gz android_dalvik-65da91cf96f8e567db9fc1221d2dcb12bad2ab80.tar.bz2 android_dalvik-65da91cf96f8e567db9fc1221d2dcb12bad2ab80.zip | |
am 16926bc4: Merge "Remove obsolete variable "len" to avoid compile failed"
Merge commit '16926bc4382640b73e439f678f675444d0d39e8f' into gingerbread-plus-aosp
* commit '16926bc4382640b73e439f678f675444d0d39e8f':
Remove obsolete variable "len" to avoid compile failed
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; } |
