Browse Source

Add parenthesis around #pragma message.

Resolves Visual Studio warning C4081.
Jason Valenzuela 5 years ago
parent
commit
90f98e0911
1 changed files with 1 additions and 1 deletions
  1. 1 1
      source/src/ports/WIN32/networkhandler.c

+ 1 - 1
source/src/ports/WIN32/networkhandler.c

@@ -41,7 +41,7 @@ void ShutdownSocketPlatform(int socket_handle) {
   (void)socket_handle;
 
 #pragma \
-  message "Untested. Is a shutdown() needed under Windows like for the POSIX port?"
+  message ("Untested. Is a shutdown() needed under Windows like for the POSIX port?")
 }
 
 void CloseSocketPlatform(int socket_handle) {