Skip to content

Commit a79404e

Browse files
committed
[lldb] Correct an assertion name.
1 parent c8450ea commit a79404e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Host/windows/MainLoopWindows.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ class SocketEvent : public MainLoopWindows::IOEvent {
125125
public:
126126
explicit SocketEvent(SOCKET socket)
127127
: IOEvent((IOObject::WaitableHandle)WSACreateEvent()), m_socket(socket) {
128-
assert(event != WSA_INVALID_EVENT);
128+
assert(m_event != WSA_INVALID_EVENT);
129129
}
130130

131131
~SocketEvent() override { WSACloseEvent((HANDLE)m_event); }

0 commit comments

Comments
 (0)