home · contact · privacy
Server: Remove log_help(), this should be serverd by the client.
[plomrogue] / src / common / rexit.c
index a3e18b2664648dc13139c0943135291d37425ce7..7eeaccb52d1c92d91a3c9760771888de70b16bde 100644 (file)
@@ -1,4 +1,9 @@
-/* src/common/rexit.c */
+/* src/common/rexit.c
+ *
+ * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+ * or any later version. For details on its copyright, license, and warranties,
+ * see the file NOTICE in the root directory of the PlomRogue source package.
+ */
 
 #include "rexit.h"
 #include <errno.h> /* global errno */
@@ -28,7 +33,7 @@ extern void exit_err(int err, const char * msg)
         return;
     }
     cleanup_func();
-    if (NULL == msg)
+    if (!msg)
     {
         msg = "Details unknown.";
     }