whitespace fixes

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/shell/hush.c b/shell/hush.c
index 238f997..7da8f33 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -2470,7 +2470,7 @@
 	 */
 	if (ENABLE_FEATURE_CHECK_UNICODE_IN_ENV
 	 || ENABLE_UNICODE_USING_LOCALE
-        ) {
+	) {
 		const char *s = get_local_var_value("LC_ALL");
 		if (!s) s = get_local_var_value("LC_CTYPE");
 		if (!s) s = get_local_var_value("LANG");
@@ -5795,8 +5795,8 @@
 	 */
 
 	setup_string_in_str(&input, str);
-        o_addchr(&dest, '\0');
-        dest.length = 0;
+	o_addchr(&dest, '\0');
+	dest.length = 0;
 	exp_str = NULL;
 
 	for (;;) {
diff --git a/shell/random.c b/shell/random.c
index 5d36205..56c7c5a 100644
--- a/shell/random.c
+++ b/shell/random.c
@@ -46,11 +46,11 @@
 	 * Choices for a,b,c: 10,13,10; 8,9,22; 2,7,3; 23,3,24
 	 * (given by algorithm author)
 	 */
-        enum {
-                a = 2,
-                b = 7,
-                c = 3,
-        };
+	enum {
+		a = 2,
+		b = 7,
+		c = 3,
+	};
 
 	uint32_t t;
 
@@ -154,7 +154,7 @@
 		write(1, buf, sizeof(buf));
 	}
 
-        return 0;
+	return 0;
 }
 
 #endif