- Added a type cast, so devcpp doesn't complain :)

This commit is contained in:
shashclp 2007-01-24 02:43:57 +00:00
parent 455a4b65bb
commit ccd404af6b
1 changed files with 1 additions and 1 deletions

View File

@ -658,7 +658,7 @@ u16 WIFI_Host_RecvData(socket_t sock, u8 *data, u16 maxLength)
if (select(1,&dataCheck,0,0,&tv))
{
/* there is data available */
return recv(sock,data,maxLength,0) ;
return recv(sock,(char*)data,maxLength,0) ;
}
return 0 ;
}