random style fixes (extra spaces deleted)
diff --git a/shell/hush.c b/shell/hush.c
index 7658aeb..5bc83bc 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -1095,7 +1095,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) {
 				debug_printf("builtin exec %s\n", child->argv[0]);
 				rcode = x->function(child);
 				fflush(stdout);
@@ -1369,7 +1369,7 @@
 			return last_return_code;
 		}
 		for (x = bltins; x->cmd; x++) {
-			if (strcmp(child->argv[i], x->cmd) == 0 ) {
+			if (strcmp(child->argv[i], x->cmd) == 0) {
 				int squirrel[] = { -1, -1, -1 };
 				int rcode;
 				if (x->function == builtin_exec && child->argv[i+1] == NULL) {