diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-04-22 18:09:21 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-04-22 18:09:21 +0200 |
commit | 3e134ebf6afb5552b3619f98f6a2ffa01a07eebb (patch) | |
tree | 6cafe5f8e63a88e4ab7b2a449dc62dd3afb3c8bf /coreutils | |
parent | 663d1da1e68b15397c00d6a094f78c2cf08358ea (diff) | |
download | busybox-w32-3e134ebf6afb5552b3619f98f6a2ffa01a07eebb.tar.gz busybox-w32-3e134ebf6afb5552b3619f98f6a2ffa01a07eebb.tar.bz2 busybox-w32-3e134ebf6afb5552b3619f98f6a2ffa01a07eebb.zip |
*: slap on a few ALIGN1/2s where appropriate
The result of looking at "grep -F -B2 '*fill*' busybox_unstripped.map"
text data bss dec hex filename
829901 4086 1904 835891 cc133 busybox_before
829665 4086 1904 835655 cc047 busybox
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/stty.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/stty.c b/coreutils/stty.c index 0e32fc898..52967ea8f 100644 --- a/coreutils/stty.c +++ b/coreutils/stty.c | |||
@@ -318,7 +318,7 @@ enum { | |||
318 | #define MI_ENTRY(N,T,F,B,M) N "\0" | 318 | #define MI_ENTRY(N,T,F,B,M) N "\0" |
319 | 319 | ||
320 | /* Mode names given on command line */ | 320 | /* Mode names given on command line */ |
321 | static const char mode_name[] = | 321 | static const char mode_name[] ALIGN1 = |
322 | MI_ENTRY("evenp", combination, REV | OMIT, 0, 0 ) | 322 | MI_ENTRY("evenp", combination, REV | OMIT, 0, 0 ) |
323 | MI_ENTRY("parity", combination, REV | OMIT, 0, 0 ) | 323 | MI_ENTRY("parity", combination, REV | OMIT, 0, 0 ) |
324 | MI_ENTRY("oddp", combination, REV | OMIT, 0, 0 ) | 324 | MI_ENTRY("oddp", combination, REV | OMIT, 0, 0 ) |
@@ -681,7 +681,7 @@ enum { | |||
681 | #define CI_ENTRY(n,s,o) n "\0" | 681 | #define CI_ENTRY(n,s,o) n "\0" |
682 | 682 | ||
683 | /* Name given on command line */ | 683 | /* Name given on command line */ |
684 | static const char control_name[] = | 684 | static const char control_name[] ALIGN1 = |
685 | CI_ENTRY("intr", CINTR, VINTR ) | 685 | CI_ENTRY("intr", CINTR, VINTR ) |
686 | CI_ENTRY("quit", CQUIT, VQUIT ) | 686 | CI_ENTRY("quit", CQUIT, VQUIT ) |
687 | CI_ENTRY("erase", CERASE, VERASE ) | 687 | CI_ENTRY("erase", CERASE, VERASE ) |
@@ -723,7 +723,7 @@ static const char control_name[] = | |||
723 | #undef CI_ENTRY | 723 | #undef CI_ENTRY |
724 | #define CI_ENTRY(n,s,o) { s, o }, | 724 | #define CI_ENTRY(n,s,o) { s, o }, |
725 | 725 | ||
726 | static const struct control_info control_info[] = { | 726 | static const struct control_info control_info[] ALIGN2 = { |
727 | /* This should be verbatim cut-n-paste copy of the above CI_ENTRYs */ | 727 | /* This should be verbatim cut-n-paste copy of the above CI_ENTRYs */ |
728 | CI_ENTRY("intr", CINTR, VINTR ) | 728 | CI_ENTRY("intr", CINTR, VINTR ) |
729 | CI_ENTRY("quit", CQUIT, VQUIT ) | 729 | CI_ENTRY("quit", CQUIT, VQUIT ) |