Skip to content

Commit

Permalink
closing socket -- fix windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
vlazzarini committed May 21, 2019
1 parent 502cc2b commit 0b0c411
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Opcodes/socksend.c
Expand Up @@ -416,7 +416,7 @@ static int32_t oscsend_deinit(CSOUND *csound, OSCSEND2 *p)
{
p->init_done = 0;
#if defined(WIN32)
int closesocket(p->sock);
//int closesocket(p->sock);
#else
close(p->sock);
#endif
Expand Down

0 comments on commit 0b0c411

Please sign in to comment.