Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

fix typo, dwIoError -> dwIOError #142

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/RakNetSocket2_Berkley.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ void RNS2_Berkley::RecvFromBlockingIPV4And6(RNS2RecvStruct *recvFromStruct)
if (recvFromStruct->bytesRead==-1)
{
DWORD dwIOError = GetLastError();
if (dwIoError != 10035)
if (dwIOError != 10035)
{
LPVOID messageBuffer;
FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
Expand Down