random style fixes (extra spaces deleted)
diff --git a/shell/lash.c b/shell/lash.c
index 09067fd..f938a74 100644
--- a/shell/lash.c
+++ b/shell/lash.c
@@ -1138,7 +1138,7 @@
 	 * if this is one of those cases.
 	 */
 	for (x = bltins; x->cmd; x++) {
-		if (strcmp(child->argv[0], x->cmd) == 0 ) {
+		if (strcmp(child->argv[0], x->cmd) == 0) {
 			_exit(x->function(child));
 		}
 	}
@@ -1262,7 +1262,7 @@
 			}
 
 			for (x = bltins; x->cmd; x++) {
-				if (strcmp(child->argv[0], x->cmd) == 0 ) {
+				if (strcmp(child->argv[0], x->cmd) == 0) {
 					int rcode;
 					int squirrel[] = {-1, -1, -1};
 					setup_redirects(child, squirrel);