home · contact · privacy
Remove redundant uses of NULL.
[plomrogue] / src / common / rexit.c
index a3e18b2664648dc13139c0943135291d37425ce7..b528975290ae7eaf78f9dcd6027b9be4afeefd4b 100644 (file)
@@ -28,7 +28,7 @@ extern void exit_err(int err, const char * msg)
         return;
     }
     cleanup_func();
-    if (NULL == msg)
+    if (!msg)
     {
         msg = "Details unknown.";
     }