]> git.mxchange.org Git - simgear.git/commitdiff
MSVC++ tweaks.
authorcurt <curt>
Mon, 2 Oct 2000 18:55:26 +0000 (18:55 +0000)
committercurt <curt>
Mon, 2 Oct 2000 18:55:26 +0000 (18:55 +0000)
simgear/io/sg_socket.cxx

index 6336e76b4dce5d8678015fd2660eb97b161dc491..288a4dd529a8e914c81be4b2bb0019e05726d547 100644 (file)
@@ -158,7 +158,7 @@ SGSocket::SocketType SGSocket::make_client_socket () {
 // Wrapper functions
 size_t SGSocket::readsocket( int fd, void *buf, size_t count ) {
 #if defined(_MSC_VER)
-    return ::recv( fd, buf, count, 0 );
+    return ::recv( fd, (char *)buf, count, 0 );
 #else
     return ::read( fd, buf, count );
 #endif
@@ -166,7 +166,7 @@ size_t SGSocket::readsocket( int fd, void *buf, size_t count ) {
 
 size_t SGSocket::writesocket( int fd, const void *buf, size_t count ) {
 #if defined(_MSC_VER)
-    return ::send( fd, buf, count, 0 );
+    return ::send( fd, (const char*)buf, count, 0 );
 #else
     return ::write( fd, buf, count );
 #endif