diff options
Diffstat (limited to 'shell/hush.c')
-rw-r--r-- | shell/hush.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/shell/hush.c b/shell/hush.c index 275b69ef3..5796f1127 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -126,7 +126,8 @@ extern char **environ; /* This is in <unistd.h>, but protected with __USE_GNU */ | |||
126 | /* broken, of course, but OK for testing */ | 126 | /* broken, of course, but OK for testing */ |
127 | static const char *indenter(int i) | 127 | static const char *indenter(int i) |
128 | { | 128 | { |
129 | static const char blanks[] = " "; | 129 | static const char blanks[] ALIGN1 = |
130 | " "; | ||
130 | return &blanks[sizeof(blanks) - i - 1]; | 131 | return &blanks[sizeof(blanks) - i - 1]; |
131 | } | 132 | } |
132 | #define debug_printf_clean(...) fprintf(stderr, __VA_ARGS__) | 133 | #define debug_printf_clean(...) fprintf(stderr, __VA_ARGS__) |
@@ -3656,7 +3657,7 @@ static void setup_job_control(void) | |||
3656 | int hush_main(int argc, char **argv); | 3657 | int hush_main(int argc, char **argv); |
3657 | int hush_main(int argc, char **argv) | 3658 | int hush_main(int argc, char **argv) |
3658 | { | 3659 | { |
3659 | static const char version_str[] = "HUSH_VERSION="HUSH_VER_STR; | 3660 | static const char version_str[] ALIGN1 = "HUSH_VERSION="HUSH_VER_STR; |
3660 | static const struct variable const_shell_ver = { | 3661 | static const struct variable const_shell_ver = { |
3661 | .next = NULL, | 3662 | .next = NULL, |
3662 | .varstr = (char*)version_str, | 3663 | .varstr = (char*)version_str, |