From 08421e1d0cf1938947553b02b0788b09e11e5c0d Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Fri, 26 May 2006 14:05:48 +0000 Subject: - work around bug in gcc-3.4.x on ARM --- util-linux/mount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util-linux') 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