aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCristian Ionescu-Idbohrn <cristian.ionescu-idbohrn@axis.com>2020-11-18 10:41:14 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2020-11-19 13:14:59 +0100
commitddfdf68ca1d925712a042700118e29f26137f9bd (patch)
tree7e74c2c597418a832cab713d5529c757b690aaa0
parentc20e42e320edcd3612cfdb71c8bea5277ebf9be2 (diff)
downloadbusybox-w32-ddfdf68ca1d925712a042700118e29f26137f9bd.tar.gz
busybox-w32-ddfdf68ca1d925712a042700118e29f26137f9bd.tar.bz2
busybox-w32-ddfdf68ca1d925712a042700118e29f26137f9bd.zip
fix warning: label 'out1' defined but not used
Signed-off-by: Cristian Ionescu-Idbohrn <cristian.ionescu-idbohrn@axis.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--shell/ash.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c
index d1ca3451d..8c9a590d1 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -7277,7 +7277,9 @@ subevalvar(char *start, char *str, int strloc,
7277 out: 7277 out:
7278 amount = loc - expdest; 7278 amount = loc - expdest;
7279 STADJUST(amount, expdest); 7279 STADJUST(amount, expdest);
7280#if BASH_PATTERN_SUBST
7280 out1: 7281 out1:
7282#endif
7281 /* Remove any recorded regions beyond start of variable */ 7283 /* Remove any recorded regions beyond start of variable */
7282 removerecordregions(startloc); 7284 removerecordregions(startloc);
7283 7285