Add missing newlines to error messages.

This commit is contained in:
Matt Kraai
2000-12-18 03:08:29 +00:00
parent bfa7967c4a
commit 0dab829977
9 changed files with 25 additions and 23 deletions

View File

@@ -1470,7 +1470,7 @@ extern char * xstrndup (const char *s, int n) {
char *t;
if (s == NULL)
error_msg_and_die("xstrndup bug");
error_msg_and_die("xstrndup bug\n");
t = xmalloc(n+1);
strncpy(t,s,n);