From: Bernhard Reutner-Fischer Date: Wed, 27 Feb 2008 21:14:52 +0000 (-0000) Subject: - fix compilation failure due to implicit decl of resolve_mount_spec(). X-Git-Tag: 1_10_0~83 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=51f421a55c9fb5435dd797984099d0fcd5c85608;p=platform%2Fupstream%2Fbusybox.git - fix compilation failure due to implicit decl of resolve_mount_spec(). DCE DTRT so remove the wrong guard. --- diff --git a/util-linux/mount.c b/util-linux/mount.c index 902df34..b19c3a3 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -248,7 +248,6 @@ static int verbose_mount(const char *source, const char *target, #define verbose_mount(...) mount(__VA_ARGS__) #endif -#if ENABLE_FEATURE_MOUNT_LABEL static int resolve_mount_spec(char **fsname) { char *tmp = NULL; @@ -264,7 +263,6 @@ static int resolve_mount_spec(char **fsname) } return 0; } -#endif /* Append mount options to string */ static void append_mount_options(char **oldopts, const char *newopts)