Commit 216061bf by Matt Helsley Committed by Daniel Lezcano

liblxc: Remove unused variable

nbargs isn't used for anything in lxc_unshare.c. Remove it. Signed-off-by: 's avatarMatt Helsley <matthltc@us.ibm.com> Signed-off-by: 's avatarDaniel Lezcano <dlezcano@fr.ibm.com>
parent b7f85ccb
...@@ -76,7 +76,7 @@ static uid_t lookup_user(const char *optarg) ...@@ -76,7 +76,7 @@ static uid_t lookup_user(const char *optarg)
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
int opt, nbargs = 0, status = 1, hastofork = 0; int opt, status = 1, hastofork = 0;
char **args; char **args;
long flags = 0; long flags = 0;
uid_t uid = -1; /* valid only if (flags & CLONE_NEWUSER) */ uid_t uid = -1; /* valid only if (flags & CLONE_NEWUSER) */
...@@ -109,12 +109,9 @@ int main(int argc, char *argv[]) ...@@ -109,12 +109,9 @@ int main(int argc, char *argv[])
hastofork = 1; hastofork = 1;
break; break;
} }
nbargs++;
} }
args = &argv[optind]; args = &argv[optind];
argc -= nbargs;
if (!flags) if (!flags)
usage(argv[0]); usage(argv[0]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment