From e0637e29f13463f50896b3ecf989712aff40f1b9 Mon Sep 17 00:00:00 2001 From: KimLS Date: Sun, 30 Jun 2019 18:03:15 -0700 Subject: [PATCH] double semicolon --- common/net/tcp_connection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/net/tcp_connection.cpp b/common/net/tcp_connection.cpp index fc162d0b5..94c1c358b 100644 --- a/common/net/tcp_connection.cpp +++ b/common/net/tcp_connection.cpp @@ -142,7 +142,7 @@ void EQ::Net::TCPConnection::Write(const char *data, size_t count) WriteBaton *baton = new WriteBaton; baton->connection = this; - baton->buffer = new char[count];; + baton->buffer = new char[count]; uv_write_t *write_req = new uv_write_t; memset(write_req, 0, sizeof(uv_write_t));