efibootmgr: add missing break for 'u' case

Reviewed by:	imp, zlei
Reported by:	Coverity
CID:		1505695
Fixes:		9a79152994 ("efibootmgr: Add --efidev (-u) to dis...")
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D38747
This commit is contained in:
Ed Maste 2023-02-23 09:52:14 -05:00
parent 7f0ebf0876
commit 17a5a29003

View File

@ -290,6 +290,7 @@ parse_args(int argc, char *argv[])
case 'u':
opts.find_dev = true;
opts.dev = strdup(optarg);
break;
case 'v':
opts.verbose = true;
break;