Skip to content
Snippets Groups Projects
Commit 447c96ce authored by deuce's avatar deuce
Browse files

Use fprintf() rather than lprintf() (Which doesn';t exist)

parent 0e941068
No related branches found
No related tags found
No related merge requests found
......@@ -61,6 +61,6 @@ int main(int argc, char **argv)
}
#ifdef _WINSOCKAPI_
if(WSAInitialized && WSACleanup()!=0)
lprintf(LOG_ERR,"!WSACleanup ERROR %d",ERROR_VALUE);
fprintf(stderr,"!WSACleanup ERROR %d",ERROR_VALUE);
#endif
}
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