Skip to content

Commit

Permalink
Fix missing ;
Browse files Browse the repository at this point in the history
  • Loading branch information
0blu committed Sep 4, 2024
1 parent d37da10 commit 5f53005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shared/IO/Networking/Internal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ void IO::Networking::Internal::CloseSocket(IO::Native::SocketHandle nativeSocket
#if defined(WIN32)
::closesocket(nativeSocket);
#elif defined(__linux__) || defined(__APPLE__)
::close(nativeSocket)
::close(nativeSocket);
#else
#error "Unsupported platform"
#endif
Expand Down

0 comments on commit 5f53005

Please sign in to comment.