summaryrefslogtreecommitdiff
path: root/src/TimePrint.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-19 18:19:03 +0200
committerMax Kellermann <max@duempel.org>2013-10-19 18:19:03 +0200
commit59f8144c50765189594d5932fc25869f9ea6e265 (patch)
treef460d9f46a99040dea402bcb3ad2d84a0e734285 /src/TimePrint.cxx
parent5a7c931293b55a27c3f79c6951707a8d6e2a5f6c (diff)
*: use nullptr instead of NULL
Diffstat (limited to 'src/TimePrint.cxx')
-rw-r--r--src/TimePrint.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/TimePrint.cxx b/src/TimePrint.cxx
index 129fa5352..6dd4061e6 100644
--- a/src/TimePrint.cxx
+++ b/src/TimePrint.cxx
@@ -30,7 +30,7 @@ time_print(Client *client, const char *name, time_t t)
struct tm tm;
const struct tm *tm2 = gmtime_r(&t, &tm);
#endif
- if (tm2 == NULL)
+ if (tm2 == nullptr)
return;
char buffer[32];