home · contact · privacy
Got rid of useless "internal error code" part of error exit messages.
authorChristian Heller <c.heller@plomlompom.de>
Mon, 17 Mar 2014 03:55:19 +0000 (04:55 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 17 Mar 2014 03:55:19 +0000 (04:55 +0100)
TODO
src/common/rexit.c
src/common/rexit.h

diff --git a/TODO b/TODO
index 4c9b8948a0013f9221976b793170da45dd556d33..225a210153625e2a0d1039e8ff67e8f3d9153696 100644 (file)
--- a/TODO
+++ b/TODO
@@ -9,8 +9,6 @@ BOTH SERVER/CLIENT:
 
 - make config files format more readable / self-explanatory
 
-- get rid of the useless "internal error code" in error messages
-
 SERVER:
 
 - implement field of view / line of sight and obstacles for those on the map
index 7b837e946987bc59b658ba441f5129b1c22a1c7a..facf63fffc71a53a9ffd9c0581383f9954bde4f1 100644 (file)
@@ -31,9 +31,7 @@ extern void exit_err(int err, char * msg)
     {
         msg = "Details unknown.";
     }
-    printf("Aborted program due to error. %s\n"
-            "Internal error code: %d\n",
-            msg, err);
+    printf("Aborted program due to error. %s\n", msg);
     if (0 != errno)
     {
         perror("errno states");
index 3095cf84234d3c29bb2a0ff1ccb6e7f4643cdc54..15c39b93732ab888498849de9cf94658ca6a6adf 100644 (file)
@@ -13,9 +13,8 @@
 extern void set_cleanup_func(void (* f)());
 
 /* If "err" == 0, do nothing. Else, clean up and exit with an error message that
- * consists, first, of "msg" or (if "msg" is a NULL pointer) a generic "Details
- * unknown", secondly of "err" as the "internal error code", and thirdly of
- * errno if it is non-zero.
+ * consists of "msg" or (if "msg" is NULL pointer) a generic "Details unknown"
+ * and of errno's content (if it is non-zero).
  */
 extern void exit_err(int err, char * msg);