Replace all uses of NULL with nullptr

This was an automatic change made by clang-tidy.  It moves all uses of
NULL to nullptr, which are equivalent, but nullptr is prefered.

Tested:  Code compiles.

Signed-off-by: Ed Tanous <ed.tanous@intel.com>
Change-Id: I9526599b222693c9723a69934b599c7a5b5d1fbf
diff --git a/redfish-core/lib/log_services.hpp b/redfish-core/lib/log_services.hpp
index 643be9b..2eb00b6 100644
--- a/redfish-core/lib/log_services.hpp
+++ b/redfish-core/lib/log_services.hpp
@@ -190,7 +190,7 @@
         static_cast<time_t>(timestamp / 1000 / 1000); // Convert from us to s
     struct tm *loctime = localtime(&t);
     char entryTime[64] = {};
-    if (NULL != loctime)
+    if (nullptr != loctime)
     {
         strftime(entryTime, sizeof(entryTime), "%FT%T%z", loctime);
     }