The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=667419d55313619807b07b1bff1b206fb5d9edbb
commit 667419d55313619807b07b1bff1b206fb5d9edbb Author: Warner Losh <[email protected]> AuthorDate: 2022-12-07 00:42:48 +0000 Commit: Warner Losh <[email protected]> CommitDate: 2022-12-07 18:00:54 +0000 stand/efi: remove unused local varaibles Remove some unused local variables. No functional change. Sponsored by: Netflix --- stand/efi/loader/main.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stand/efi/loader/main.c b/stand/efi/loader/main.c index 85c545e0e72f..57a9769f6024 100644 --- a/stand/efi/loader/main.c +++ b/stand/efi/loader/main.c @@ -702,8 +702,7 @@ interactive_interrupt(const char *msg) static int parse_args(int argc, CHAR16 *argv[]) { - int i, j, howto; - bool vargood; + int i, howto; char var[128]; /*
