summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorMatthew Parlane <parlane@gmail.com>2013-01-26 18:48:02 +1300
committerMatthew Parlane <parlane@gmail.com>2013-01-26 18:48:02 +1300
commit1083884b8b9566a05dd03e03f978ec3ece58f4dd (patch)
treef3e5b3eee343f82e3db23f838fd255e410dc5f73 /Source/Core
parenta354f47f98f7490d2201b531a437e3c53727c140 (diff)
Windows couldn't convert.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_net.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_net.cpp b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_net.cpp
index 8829f13bc8..b1e67714fc 100644
--- a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_net.cpp
+++ b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_net.cpp
@@ -874,7 +874,7 @@ u32 CWII_IPC_HLE_Device_net_ip_top::ExecuteCommand(u32 _Command,
millis.tv_sec = 3;
millis.tv_usec = 0;
#endif
- setsockopt(s, SOL_SOCKET, SO_RCVTIMEO,&millis,sizeof(millis));
+ setsockopt(s, SOL_SOCKET, SO_RCVTIMEO, (const char *)&millis,sizeof(millis));
}