From: Denys Vlasenko Date: Sun, 17 Mar 2013 22:01:17 +0000 (+0100) Subject: mdev: fix build failure X-Git-Tag: 1_22_0~227 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4424dfd69bc4edfe514b17b7006f8855892a338b;p=oweals%2Fbusybox.git mdev: fix build failure The error was "error: 'struct globals' has no member named 'parser'" Signed-off-by: Denys Vlasenko --- diff --git a/util-linux/mdev.c b/util-linux/mdev.c index c5c0d613c..5fe6bbbde 100644 --- a/util-linux/mdev.c +++ b/util-linux/mdev.c @@ -646,9 +646,8 @@ static void make_device(char *device_name, char *path, int operation) } /* else: it's final implicit "match-all" rule */ rule_matches: -#endif dbg2("rule matched, line %d", G.parser ? G.parser->lineno : -1); - +#endif /* Build alias name */ alias = NULL; if (ENABLE_FEATURE_MDEV_RENAME && rule->ren_mov) {