summaryrefslogtreecommitdiffstats
path: root/runtime/jdwp/jdwp_request.cc
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/jdwp/jdwp_request.cc')
-rw-r--r--runtime/jdwp/jdwp_request.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/jdwp/jdwp_request.cc b/runtime/jdwp/jdwp_request.cc
index 440b51b..a9dd1e1 100644
--- a/runtime/jdwp/jdwp_request.cc
+++ b/runtime/jdwp/jdwp_request.cc
@@ -140,7 +140,7 @@ JdwpTypeTag Request::ReadTypeTag() {
JdwpLocation Request::ReadLocation() {
JdwpLocation location;
- memset(&location, 0, sizeof(location)); // Allows memcmp(3) later.
+ memset(&location, 0, sizeof(location)); // Allows memcmp(3) later.
location.type_tag = ReadTypeTag();
location.class_id = ReadObjectId("class");
location.method_id = ReadMethodId();