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 /miscutils/adjtimex.c | |
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 'miscutils/adjtimex.c')
-rw-r--r-- | miscutils/adjtimex.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/miscutils/adjtimex.c b/miscutils/adjtimex.c index 534364a69..058aa9a5c 100644 --- a/miscutils/adjtimex.c +++ b/miscutils/adjtimex.c | |||
@@ -29,7 +29,7 @@ | |||
29 | # include <sys/timex.h> | 29 | # include <sys/timex.h> |
30 | #endif | 30 | #endif |
31 | 31 | ||
32 | static const uint16_t statlist_bit[] = { | 32 | static const uint16_t statlist_bit[] ALIGN2 = { |
33 | STA_PLL, | 33 | STA_PLL, |
34 | STA_PPSFREQ, | 34 | STA_PPSFREQ, |
35 | STA_PPSTIME, | 35 | STA_PPSTIME, |
@@ -45,7 +45,7 @@ static const uint16_t statlist_bit[] = { | |||
45 | STA_CLOCKERR, | 45 | STA_CLOCKERR, |
46 | 0 | 46 | 0 |
47 | }; | 47 | }; |
48 | static const char statlist_name[] = | 48 | static const char statlist_name[] ALIGN1 = |
49 | "PLL" "\0" | 49 | "PLL" "\0" |
50 | "PPSFREQ" "\0" | 50 | "PPSFREQ" "\0" |
51 | "PPSTIME" "\0" | 51 | "PPSTIME" "\0" |
@@ -61,7 +61,7 @@ static const char statlist_name[] = | |||
61 | "CLOCKERR" | 61 | "CLOCKERR" |
62 | ; | 62 | ; |
63 | 63 | ||
64 | static const char ret_code_descript[] = | 64 | static const char ret_code_descript[] ALIGN1 = |
65 | "clock synchronized" "\0" | 65 | "clock synchronized" "\0" |
66 | "insert leap second" "\0" | 66 | "insert leap second" "\0" |
67 | "delete leap second" "\0" | 67 | "delete leap second" "\0" |