Missed semicolon

This commit is contained in:
Michael Black 2019-12-19 18:05:23 -06:00
parent 2703423b72
commit 1dbd633d5a
No known key found for this signature in database
GPG Key ID: 6599353EC683404D

View File

@ -1045,7 +1045,7 @@ void *handle_socket(void *arg)
handle_exit:
#ifdef __MINGW32__
shutdown(handle_data_arg->sock, 2)
shutdown(handle_data_arg->sock, 2);
closesocket(handle_data_arg->sock);
#else
close(handle_data_arg->sock);