summaryrefslogtreecommitdiffstats
path: root/adb/jdwp_service.c
diff options
context:
space:
mode:
Diffstat (limited to 'adb/jdwp_service.c')
-rw-r--r--adb/jdwp_service.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/adb/jdwp_service.c b/adb/jdwp_service.c
index 43dc69eb4..ae7f12dfd 100644
--- a/adb/jdwp_service.c
+++ b/adb/jdwp_service.c
@@ -287,7 +287,7 @@ jdwp_process_event( int socket, unsigned events, void* _proc )
if (len <= 0) {
if (len < 0 && errno == EINTR)
continue;
- if (len < 0 && errno == EAGAIN)
+ if (len < 0 && errno == EAGAIN)
return;
else {
D("terminating JDWP %d connection: %s\n", proc->pid,
@@ -295,7 +295,7 @@ jdwp_process_event( int socket, unsigned events, void* _proc )
break;
}
}
- else {
+ else {
D( "ignoring unexpected JDWP %d control socket activity (%d bytes)\n",
proc->pid, len );
}