Skip to content
Snippets Groups Projects
Commit e71dba32 authored by Freddie Akeroyd's avatar Freddie Akeroyd
Browse files

Add cast for Windows - it seems to use char* rather than void* on

socket prototypes. 

Refs #136.
parent 343dcd8f
No related branches found
No related tags found
No related merge requests found
......@@ -242,7 +242,7 @@ int isisds_send_command(SOCKET s, const char* command, const void* data, ISISDSD
n = send(s, (char*)&comm, sizeof(comm), 0);
if ( (n == sizeof(comm)) && (data != NULL) && (len_data > 0) )
{
n = send(s, data, len_data, 0);
n = send(s, (const char*)data, len_data, 0);
}
return n;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment