Fixed ls formatting for 8 char user names.
 -Erik
diff --git a/ls.c b/ls.c
index 862da43..78193e7 100644
--- a/ls.c
+++ b/ls.c
@@ -198,7 +198,7 @@
 			if (*scratch) {
 			    fputs(scratch, stdout);
 			    if ( strlen( scratch) <= 8 )
-				wr("         ", 8-strlen( scratch));
+				wr("          ", 9-strlen( scratch));
 			}
 			else {
 				writenum((long) info->st_uid,(short)8);