From: nilfsuser5678 <189666860+nilfsuser5678@users.noreply.github.com> Date: Fri, 29 Nov 2024 17:22:57 +0000 (+0000) Subject: libmount/context_mount: fix argument number comments X-Git-Tag: v2.42-start~129^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d2f7e308f4507dadc213e293771d627a0fd41f9c;p=thirdparty%2Futil-linux.git libmount/context_mount: fix argument number comments --- diff --git a/libmount/src/context_mount.c b/libmount/src/context_mount.c index 599370782..62a7dface 100644 --- a/libmount/src/context_mount.c +++ b/libmount/src/context_mount.c @@ -451,10 +451,10 @@ static int exec_helper(struct libmnt_context *cxt) args[i++] = type; /* 11 */ } if (namespace) { - args[i++] = "-N"; /* 11 */ - args[i++] = namespace; /* 12 */ + args[i++] = "-N"; /* 12 */ + args[i++] = namespace; /* 13 */ } - args[i] = NULL; /* 13 */ + args[i] = NULL; /* 14 */ for (i = 0; args[i]; i++) DBG(CXT, ul_debugobj(cxt, "argv[%d] = \"%s\"", i, args[i]));