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();
 }
 


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to