xrdpapi: cast fix

This commit is contained in:
Jay Sorg 2013-02-11 13:43:20 -08:00
parent 2ed9994dcc
commit b7af404030
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ mysend(int sck, const void* adata, int bytes)
int error;
const char* data;
data = (char*)adata;
data = (const char*)adata;
sent = 0;
while (sent < bytes)
{