summaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2013-11-12 11:16:30 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2013-11-12 11:16:30 +0100
commit087843a65b82ca2be486118214293530a6814d2d (patch)
treebd1468a891bf5efb6c4adcb36d9401619018126c /util-linux
parentafa63b2dcdc9b9d0183ffd84599ea5d4ad94d639 (diff)
downloadbusybox-087843a65b82ca2be486118214293530a6814d2d.tar.gz
fix "warning: ISO C90 forbids mixed declarations and code"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/swaponoff.c3
1 files changed, 2 insertions, 1 deletions
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);