From d8b13fc98237d2f3f0afac43226364a9cdce055a Mon Sep 17 00:00:00 2001 From: aldot Date: Fri, 26 May 2006 14:05:48 +0000 Subject: - work around bug in gcc-3.4.x on ARM git-svn-id: svn://busybox.net/trunk/busybox@15191 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- util-linux/mount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util-linux/mount.c b/util-linux/mount.c index 4bd6433ca..a191f3260 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -351,7 +351,7 @@ static int singlemount(struct mntent *mp) // If mount failed, clean up loop file (if any). - if (rc && loopFile) { + if (ENABLE_FEATURE_MOUNT_LOOP && rc && loopFile) { del_loop(mp->mnt_fsname); if (ENABLE_FEATURE_CLEAN_UP) { free(loopFile); -- cgit v1.2.3-55-g6feb