Add newline in error messages

From: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
Date: Mon, 17 Sep 2012 19:05:06 +0200

---
 st.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/st.c b/st.c
index df7f8d8..c408ca9 100644
--- a/st.c
+++ b/st.c
_AT_@ -363,14 +363,14 @@ void *
 xmalloc(size_t len) {
 	void *p = malloc(len);
 	if(!p)
-		die("Out of memory");
+		die("Out of memory\n");
 	return p;
 }
 
 void *
 xrealloc(void *p, size_t len) {
 	if((p = realloc(p, len)) == NULL)
-		die("Out of memory");
+		die("Out of memory\n");
 	return p;
 }
 
-- 
1.7.10.4
--ZGiS0Q5IWpPtfppv
Content-Type: text/x-diff; charset=utf-8
Content-Disposition: attachment; filename="0003-Copy-non-set-positions-as-spaces.patch"
Received on Mon Sep 17 2001 - 00:00:00 CEST

This archive was generated by hypermail 2.3.0 : Mon Sep 17 2012 - 20:36:04 CEST