aboutsummaryrefslogtreecommitdiff
path: root/miscutils/adjtimex.c
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils/adjtimex.c')
-rw-r--r--miscutils/adjtimex.c6
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
32static const uint16_t statlist_bit[] = { 32static 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};
48static const char statlist_name[] = 48static 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
64static const char ret_code_descript[] = 64static 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"