diff --git a/src/network.c b/src/network.c index 3aa8ac2..0ef0967 100644 --- a/src/network.c +++ b/src/network.c @@ -275,7 +275,7 @@ int net_shutdown_r(int fd) int net_shutdown_w(int fd) { #ifdef WINSOCK - return shutdown(fd, SD_SEND) + return shutdown(fd, SD_SEND); #else return shutdown(fd, SHUT_WR); #endif