diff options
| author | Rohit Nirmal <rohitnirmal9@gmail.com> | 2015-03-14 20:20:41 -0500 |
|---|---|---|
| committer | Rohit Nirmal <rohitnirmal9@gmail.com> | 2015-03-14 20:20:41 -0500 |
| commit | 48ec42d4a01b9dd3db4316a3de1230e3f3fffe07 (patch) | |
| tree | ffb814df1ab96236e19e18afa6f4c7202efe249b /Source/Core/Common/TraversalServer.cpp | |
| parent | 2134770d7a4596b50a32d96d0e7c5a3dac6b81ff (diff) | |
Core: Change NULLs to nullptrs.
Diffstat (limited to 'Source/Core/Common/TraversalServer.cpp')
| -rw-r--r-- | Source/Core/Common/TraversalServer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/TraversalServer.cpp b/Source/Core/Common/TraversalServer.cpp index 777078bccb..097d812ddd 100644 --- a/Source/Core/Common/TraversalServer.cpp +++ b/Source/Core/Common/TraversalServer.cpp @@ -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); |
