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) | |
download | busybox-w32-0dab82997777bffb95d01d68e1628ee79207a03d.tar.gz busybox-w32-0dab82997777bffb95d01d68e1628ee79207a03d.tar.bz2 busybox-w32-0dab82997777bffb95d01d68e1628ee79207a03d.zip |
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) { | |||
1470 | char *t; | 1470 | char *t; |
1471 | 1471 | ||
1472 | if (s == NULL) | 1472 | if (s == NULL) |
1473 | error_msg_and_die("xstrndup bug"); | 1473 | error_msg_and_die("xstrndup bug\n"); |
1474 | 1474 | ||
1475 | t = xmalloc(n+1); | 1475 | t = xmalloc(n+1); |
1476 | strncpy(t,s,n); | 1476 | strncpy(t,s,n); |