From e3e22c35f1b2a6edae3bfa92f4812cd820bb5295 Mon Sep 17 00:00:00 2001 From: Joseph Henry Date: Tue, 10 Oct 2017 13:02:21 -0700 Subject: [PATCH] Fixed typo --- src/ZT1Service.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ZT1Service.cpp b/src/ZT1Service.cpp index d995a7a..085ba4a 100644 --- a/src/ZT1Service.cpp +++ b/src/ZT1Service.cpp @@ -400,7 +400,7 @@ void zts_start(const char *path) ZeroTier::homeDir = path; } #if defined(__MINGW32__) || defined(__MINGW64__) - WSAStartup(MAKEWORD(2, 2), &wsaData) // initialize WinSock. Used in Phy for loopback pipe + WSAStartup(MAKEWORD(2, 2), &wsaData); // initialize WinSock. Used in Phy for loopback pipe #endif pthread_t service_thread; pthread_create(&service_thread, NULL, zts_start_service, NULL);