From 32f774cd344cf12336c22b0947f102274a99ee31 Mon Sep 17 00:00:00 2001 From: Michael Tokarev Date: Tue, 24 Jul 2012 15:56:37 +0200 Subject: *: declare strings with ALIGN1, as appropriate Signed-off-by: Michael Tokarev Signed-off-by: Denys Vlasenko --- networking/udhcp/common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'networking') 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); -- cgit v1.2.3