Kaydet (Commit) 6737f12e authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Conversion from 'void*' to pointer to non-'void' requires an explicit cast

Change-Id: Ia7e0a436d462fc98b458f80f2abae409419c11c1
üst c564fdfe
...@@ -52,7 +52,7 @@ sal_Int32 BufferedStreamSocket::write( const void* pBuffer, sal_uInt32 n ) ...@@ -52,7 +52,7 @@ sal_Int32 BufferedStreamSocket::write( const void* pBuffer, sal_uInt32 n )
if ( !usingCSocket ) if ( !usingCSocket )
return StreamSocket::write( pBuffer, n ); return StreamSocket::write( pBuffer, n );
else else
return ::send( mSocket, pBuffer, (size_t) n, 0 ); return ::send( mSocket, (const char *) pBuffer, (size_t) n, 0 );
} }
sal_Int32 BufferedStreamSocket::readLine( OString& aLine ) sal_Int32 BufferedStreamSocket::readLine( OString& aLine )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment