diff options
author | Matt Kraai <kraai@debian.org> | 2000-12-18 03:08:29 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2000-12-18 03:08:29 +0000 |
commit | 0dab82997777bffb95d01d68e1628ee79207a03d (patch) | |
tree | cd56722ced55fd4b08049a0717cbbb9df5e9113f /utility.c | |
parent | bfa7967c4a18c9a7addbe853cf9f736ac34b4e5b (diff) |
Add missing newlines to error messages.
Diffstat (limited to 'utility.c')
-rw-r--r-- | utility.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |