diff options
author | Greg Clayton <gclayton@apple.com> | 2013-12-06 17:46:35 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2013-12-06 17:46:35 +0000 |
commit | d629980ab3995fc5b47b6321e3ea490886cd446e (patch) | |
tree | 79e620d2bdf54fb9f6ef63b0e1cd7347ba6c0832 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h | |
parent | f7760a24e5eba1bbaa0636ee24726f911aeb3647 (diff) | |
download | bcm5719-llvm-d629980ab3995fc5b47b6321e3ea490886cd446e.tar.gz bcm5719-llvm-d629980ab3995fc5b47b6321e3ea490886cd446e.zip |
Replace all in_port_t with uint16_t to avoid compilation issues on different systems.
llvm-svn: 196586
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h index a21679e51dc..fb1955e3f74 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h @@ -258,7 +258,7 @@ protected: lldb_private::Error StartListenThread (const char *hostname = "localhost", - in_port_t port = 0); + uint16_t port = 0); bool JoinListenThread (); |