From db33a144d2140e88960a3d0dc9dfbe4f103665e6 Mon Sep 17 00:00:00 2001 From: Pavel Emelyanov Date: Wed, 25 Dec 2013 16:54:19 +0400 Subject: [PATCH] mount: Fix the mi we print info about The t and m match there, but strictly speaking we're working on the m. Signed-off-by: Pavel Emelyanov --- mount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mount.c b/mount.c index 09486884c..f07206a84 100644 --- a/mount.c +++ b/mount.c @@ -326,7 +326,7 @@ static int validate_mounts(struct mount_info *info) } if (&t->mnt_bind == &m->mnt_bind) { pr_err("%d:%s doesn't have a proper root mount\n", - t->mnt_id, t->mountpoint); + m->mnt_id, m->mountpoint); return -1; } }