From d6d1bec40182cc7a95a37201ba633a4de5c36fe4 Mon Sep 17 00:00:00 2001 From: nilfsuser5678 <189666860+nilfsuser5678@users.noreply.github.com> Date: Fri, 29 Nov 2024 17:22:57 +0000 Subject: [PATCH] libmount/context_mount: fix argument number comments (cherry picked from commit d2f7e308f4507dadc213e293771d627a0fd41f9c) --- libmount/src/context_mount.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libmount/src/context_mount.c b/libmount/src/context_mount.c index f9d610f77..e46558f93 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])); -- 2.47.2