Core: Change NULLs to nullptrs.

This commit is contained in:
Rohit Nirmal
2015-03-14 20:20:41 -05:00
parent 2134770d7a
commit 48ec42d4a0
5 changed files with 7 additions and 7 deletions

View File

@ -431,7 +431,7 @@ int main()
// note: switch to recvmmsg (yes, mmsg) if this becomes
// expensive
rv = recvfrom(sock, &packet, sizeof(packet), 0, (sockaddr*) &raddr, &addrLen);
if (gettimeofday(&tv, NULL) < 0)
if (gettimeofday(&tv, nullptr) < 0)
{
perror("gettimeofday");
exit(1);