Skip to content

Commit 9f788de

Browse files
authored
tools: fix compiling vwhere with -cc gcc -cstrict (#21347)
1 parent fe9be96 commit 9f788de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/tools/vwhere/finder_utils.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ fn invalid_option(invalid ParamOption, arg string) {
107107

108108
fn valid_args_quantity_or_show_help(args []string) {
109109
if true in [
110-
args.len < 1,
110+
(args.len < 1),
111111
'-help' in args,
112112
'--help' in args,
113113
args == ['help'],

0 commit comments

Comments
 (0)