From: Denys Vlasenko Date: Tue, 12 Nov 2013 10:16:30 +0000 (+0100) Subject: fix "warning: ISO C90 forbids mixed declarations and code" X-Git-Tag: 1_22_0~52 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=087843a65b82ca2be486118214293530a6814d2d;p=oweals%2Fbusybox.git fix "warning: ISO C90 forbids mixed declarations and code" Signed-off-by: Denys Vlasenko --- diff --git a/util-linux/swaponoff.c b/util-linux/swaponoff.c index 40f971d35..3f223343e 100644 --- a/util-linux/swaponoff.c +++ b/util-linux/swaponoff.c @@ -96,8 +96,9 @@ static int do_em_all(void) || hasmntopt(m, MNTOPT_NOAUTO) == NULL ) { #if ENABLE_FEATURE_SWAPON_PRI + char *p; g_flags = 0; /* each swap space might have different flags */ - char *p = hasmntopt(m,"pri"); + p = hasmntopt(m, "pri"); if (p) { /* Max allowed 32767 (==SWAP_FLAG_PRIO_MASK) */ unsigned int swap_prio = MIN(bb_strtou(p + 4 , NULL, 10), SWAP_FLAG_PRIO_MASK);