From 59f8144c50765189594d5932fc25869f9ea6e265 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 19 Oct 2013 18:19:03 +0200 Subject: *: use nullptr instead of NULL --- src/TimePrint.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/TimePrint.cxx') 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]; -- cgit v1.2.3