Skip to content

Commit

Permalink
vs2010: Replace NULL by nullptr
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Weil <[email protected]>
  • Loading branch information
stweil committed Apr 22, 2018
1 parent f785d5c commit 8374e37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vs2010/port/gettimeofday.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

int gettimeofday(struct timeval *tp, struct timezone *tzp) {
l_int32 sec, usec;
if (tp == NULL)
if (tp == nullptr)
return -1;

l_getCurrentTime(&sec, &usec);
Expand Down

0 comments on commit 8374e37

Please sign in to comment.