commit | 6d8dd47f2f65c4476b31672b6f2c7bbf9020fe3a | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Tue Jan 17 18:27:41 2012 -0800 |
committer | Elliott Hughes <enh@google.com> | Tue Jan 17 18:27:41 2012 -0800 |
tree | b572366b4ec42dba8453c5c91b4aa0b16c0ac871 | |
parent | 73a15f4ca25453bb86d5e93c8d005e0eb3868e18 [diff] [blame] |
Fix a bunch of uses of 'short'. (In particular, port numbers should be unsigned short.) Change-Id: I944eb0f8e97390f1af8094b07ee7f2a00045bd35
diff --git a/src/jdwp/jdwp.h b/src/jdwp/jdwp.h index 03c70b0..ad3d077 100644 --- a/src/jdwp/jdwp.h +++ b/src/jdwp/jdwp.h
@@ -95,7 +95,7 @@ bool server; bool suspend; std::string host; - short port; + uint16_t port; }; struct JdwpEvent;