2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-23 10:28:05 +00:00

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 <xemul@parallels.com>
This commit is contained in:
Pavel Emelyanov 2013-12-25 16:54:19 +04:00
parent dcd680726c
commit db33a144d2

View File

@ -326,7 +326,7 @@ static int validate_mounts(struct mount_info *info)
} }
if (&t->mnt_bind == &m->mnt_bind) { if (&t->mnt_bind == &m->mnt_bind) {
pr_err("%d:%s doesn't have a proper root mount\n", pr_err("%d:%s doesn't have a proper root mount\n",
t->mnt_id, t->mountpoint); m->mnt_id, m->mountpoint);
return -1; return -1;
} }
} }