aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2022-02-06 20:07:12 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2022-02-06 20:07:12 +0100
commit987be932ed3cbea56b68bbe85649191c13b66015 (patch)
treee6bee7fb9dca0402f5ec97807a64c1c9938dd854 /networking
parentca466f385ac985a8b3491daa9f326dc480cdee70 (diff)
downloadbusybox-w32-987be932ed3cbea56b68bbe85649191c13b66015.tar.gz
busybox-w32-987be932ed3cbea56b68bbe85649191c13b66015.tar.bz2
busybox-w32-987be932ed3cbea56b68bbe85649191c13b66015.zip
*: slap on a few ALIGN_PTR where appropriate
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r--networking/inetd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/inetd.c b/networking/inetd.c
index e71be51c3..fb2fbe323 100644
--- a/networking/inetd.c
+++ b/networking/inetd.c
@@ -1538,7 +1538,7 @@ int inetd_main(int argc UNUSED_PARAM, char **argv)
1538#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO \ 1538#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO \
1539 || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD 1539 || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
1540# if !BB_MMU 1540# if !BB_MMU
1541static const char *const cat_args[] = { "cat", NULL }; 1541static const char *const cat_args[] ALIGN_PTR = { "cat", NULL };
1542# endif 1542# endif
1543#endif 1543#endif
1544 1544