Sfoglia il codice sorgente

Add newline in error messages

---
 st.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
Roberto E. Vargas Caballero 12 anni fa
parent
commit
111199cf22
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      st.c

+ 2 - 2
st.c

@@ -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;
 }