From 9e3d5ab99f2b9cb84b0ec52b24812b0081b0cc0a Mon Sep 17 00:00:00 2001 From: andersen Date: Fri, 2 Jun 2000 03:21:42 +0000 Subject: A number of additional fixed from Pavel Roskin, note some more bugs in the TODO list. Add Glenn to the Authors list for writing a mini ar for BusyBox, which is now included. -Erik git-svn-id: svn://busybox.net/trunk/busybox@594 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- pwd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pwd.c') diff --git a/pwd.c b/pwd.c index 19494a96c..146ef332b 100644 --- a/pwd.c +++ b/pwd.c @@ -31,7 +31,7 @@ extern int pwd_main(int argc, char **argv) char buf[BUFSIZ + 1]; if (getcwd(buf, sizeof(buf)) == NULL) - fatalError("pwd: %s", strerror(errno)); + fatalError("pwd: %s\n", strerror(errno)); printf("%s\n", buf); exit(TRUE); -- cgit v1.2.3-55-g6feb