From: Christian Heller <c.heller@plomlompom.de>
Date: Wed, 21 Aug 2013 02:52:45 +0000 (+0200)
Subject: Added newline to end of error messages.
X-Git-Tag: tce~1087
X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/static/test?a=commitdiff_plain;h=9cc02529df358c0cc32ca1b1cde9c327204a5183;p=plomrogue

Added newline to end of error messages.
---

diff --git a/src/rexit.c b/src/rexit.c
index d718f19..73d740b 100644
--- a/src/rexit.c
+++ b/src/rexit.c
@@ -67,6 +67,6 @@ extern void exit_err(uint8_t err, struct World * world, char * msg)
         return;
     }
     cleanup(world);
-    printf(msg);
+    printf("%s\n", msg);
     exit(EXIT_FAILURE);
 }