Fixed use of previous writeline format in #if __APPLE__ segment

This commit is contained in:
Chris Teubert
2015-05-20 10:17:42 -07:00
parent acac0063d7
commit be8f92eaa2

View File

@@ -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;