The big NULL replacement party part 6.

...and ', NULL' had even more to replace.
This commit is contained in:
Jason Felds
2013-05-03 23:49:23 -04:00
parent 28e5148dec
commit 07b9fb6da5
95 changed files with 2582 additions and 2582 deletions
+2 -2
View File
@@ -201,7 +201,7 @@ bool EzSockets::IsError()
FD_ZERO(scks);
FD_SET((unsigned)sock, scks);
if (select(sock+1, NULL, NULL, scks, times) >=0 )
if (select(sock+1, nullptr, nullptr, scks, times) >=0 )
return false;
state = skERROR;
@@ -213,7 +213,7 @@ bool EzSockets::CanWrite()
FD_ZERO(scks);
FD_SET((unsigned)sock, scks);
return select(sock+1, NULL, scks, NULL, times) > 0;
return select(sock+1, nullptr, scks, nullptr, times) > 0;
}
void EzSockets::update()