From 2a9bad78c8a3855681a62a94d8d6cc82ce81ba33 Mon Sep 17 00:00:00 2001 From: tb Date: Mon, 28 Jun 2021 14:01:38 +0000 Subject: [PATCH] Garbage collect loop index i which is no longer used after usage tweak. --- usr.sbin/vmctl/main.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/usr.sbin/vmctl/main.c b/usr.sbin/vmctl/main.c index 720715030df..eb1827689f9 100644 --- a/usr.sbin/vmctl/main.c +++ b/usr.sbin/vmctl/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.66 2021/06/26 18:03:45 jmc Exp $ */ +/* $OpenBSD: main.c,v 1.67 2021/06/28 14:01:38 tb Exp $ */ /* * Copyright (c) 2015 Reyk Floeter @@ -95,10 +95,8 @@ __dead void usage(void) { extern char *__progname; - int i; - fprintf(stderr, "usage:\t%s [-v] command [arg ...]\n", - __progname); + fprintf(stderr, "usage:\t%s [-v] command [arg ...]\n", __progname); exit(1); } -- 2.20.1