[Lldb-commits] [lldb] ac2b7f8 - [lldb][NFC] Fix indentation in TCPSocket::CloseListenSockets

Raphael Isemann via lldb-commits lldb-commits at lists.llvm.org
Thu Aug 13 03:29:55 PDT 2020


Author: Raphael Isemann
Date: 2020-08-13T12:29:24+02:00
New Revision: ac2b7f8ac1649afbc6d0b8e2abf324278441dc7b

URL: https://github.com/llvm/llvm-project/commit/ac2b7f8ac1649afbc6d0b8e2abf324278441dc7b
DIFF: https://github.com/llvm/llvm-project/commit/ac2b7f8ac1649afbc6d0b8e2abf324278441dc7b.diff

LOG: [lldb][NFC] Fix indentation in TCPSocket::CloseListenSockets

Added: 
    

Modified: 
    lldb/source/Host/common/TCPSocket.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Host/common/TCPSocket.cpp b/lldb/source/Host/common/TCPSocket.cpp
index 047cb0e4c2bf..ea7377edbd45 100644
--- a/lldb/source/Host/common/TCPSocket.cpp
+++ b/lldb/source/Host/common/TCPSocket.cpp
@@ -247,7 +247,7 @@ Status TCPSocket::Listen(llvm::StringRef name, int backlog) {
 
 void TCPSocket::CloseListenSockets() {
   for (auto socket : m_listen_sockets)
-  CLOSE_SOCKET(socket.first);
+    CLOSE_SOCKET(socket.first);
   m_listen_sockets.clear();
 }
 


        


More information about the lldb-commits mailing list