From be8f92eaa2cb88a554a4ec145b7ac432d1b98f2f Mon Sep 17 00:00:00 2001 From: Chris Teubert Date: Wed, 20 May 2015 10:17:42 -0700 Subject: [PATCH] Fixed use of previous writeline format in #if __APPLE__ segment --- xpcPlugin/UDPSocket.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xpcPlugin/UDPSocket.cpp b/xpcPlugin/UDPSocket.cpp index 8a1aa36..349f127 100644 --- a/xpcPlugin/UDPSocket.cpp +++ b/xpcPlugin/UDPSocket.cpp @@ -38,7 +38,7 @@ namespace XPC #elif (__APPLE__ || __linux) if ((this->sock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) == -1) { - Log::WriteLine("[SOCK] ERROR: Failed to open socket"); + Log::WriteLine(LOG_FATAL, tag, "ERROR: Failed to open socket"); return; } int optval = 1;