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
diff --git a/coreutils/test.c b/coreutils/test.c
index 9b541e3..0a16e93 100644
--- a/coreutils/test.c
+++ b/coreutils/test.c
@@ -185,7 +185,7 @@
 
 	if (strcmp(argv[0], "[") == 0) {
 		if (strcmp(argv[--argc], "]"))
-			fatalError("missing ]");
+			fatalError("missing ]\n");
 		argv[argc] = NULL;
 	}
 	if (strcmp(argv[1], dash_dash_help) == 0) {
@@ -244,9 +244,9 @@
 	char	*msg;
 {
 	if (op && *op)
-		fatalError("%s: %s", op, msg);
+		fatalError("%s: %s\n", op, msg);
 	else
-		fatalError("%s", msg);
+		fatalError("%s\n", msg);
 }
 
 static int
@@ -481,13 +481,13 @@
 	r = strtol(s, &p, 10);
 
 	if (errno != 0)
-	  fatalError("%s: out of range", s);
+	  fatalError("%s: out of range\n", s);
 
 	while (isspace(*p))
 	  p++;
 	
 	if (*p)
-	  fatalError("%s: bad number", s);
+	  fatalError("%s: bad number\n", s);
 
 	return (int) r;
 }
@@ -567,7 +567,7 @@
 {
 	ngroups = getgroups(0, NULL);
 	if ((group_array = realloc(group_array, ngroups * sizeof(gid_t))) == NULL)
-		fatalError("Out of space");
+		fatalError("Out of space\n");
 
 	getgroups(ngroups, group_array);
 }