Fix char* format specifier.

This commit is contained in:
Michael Rennie
2016-08-23 20:26:28 +01:00
parent e7cbc905e6
commit 86fd623a54
+1 -1
View File
@@ -342,7 +342,7 @@ Socket *CreateClientSocket(const char *host, uint16_t port, int timeoutMS)
return new Socket((ptrdiff_t)s);
}
RDCWARN("Failed to connect to %S:%d", host, port);
RDCWARN("Failed to connect to %s:%d", host, port);
return NULL;
}