aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/common.h
diff options
context:
space:
mode:
authorMichael Tokarev <mjt@tls.msk.ru>2012-07-24 15:56:37 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2012-07-24 15:56:37 +0200
commit32f774cd344cf12336c22b0947f102274a99ee31 (patch)
tree086312d73d2bb0df06a292395fdb4839186954a5 /networking/udhcp/common.h
parente565383fd53b999ce868081d077316e7ebbd1118 (diff)
downloadbusybox-32f774cd344cf12336c22b0947f102274a99ee31.tar.gz
*: declare strings with ALIGN1, as appropriate
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/common.h')
-rw-r--r--networking/udhcp/common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/udhcp/common.h b/networking/udhcp/common.h
index cfd58679a..4fa0471de 100644
--- a/networking/udhcp/common.h
+++ b/networking/udhcp/common.h
@@ -187,8 +187,8 @@ struct option_set {
};
extern const struct dhcp_optflag dhcp_optflags[];
-extern const char dhcp_option_strings[];
-extern const uint8_t dhcp_option_lengths[];
+extern const char dhcp_option_strings[] ALIGN1;
+extern const uint8_t dhcp_option_lengths[] ALIGN1;
unsigned FAST_FUNC udhcp_option_idx(const char *name);