We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce3629f commit efe3e7cCopy full SHA for efe3e7c
lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
@@ -732,8 +732,8 @@ ConnectionStatus ConnectionFileDescriptor::ConnectFile(
732
733
// Set port speed to the available maximum
734
#ifdef B115200
735
- ::cfsetospeed(&options, B115200);
736
- ::cfsetispeed(&options, B115200);
+ ::cfsetospeed(&options, B115200);
+ ::cfsetispeed(&options, B115200);
737
#elif B57600
738
::cfsetospeed(&options, B57600);
739
::cfsetispeed(&options, B57600);
lldb/source/Host/posix/DomainSocket.cpp
@@ -14,9 +14,9 @@
14
15
#include <cstddef>
16
#include <memory>
17
+#include <strings.h>
18
#include <sys/socket.h>
19
#include <sys/un.h>
-#include <strings.h>
20
21
using namespace lldb;
22
using namespace lldb_private;
0 commit comments