Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
spytheman committed Feb 21, 2025
1 parent 719c3b3 commit f5f0292
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions vlib/v/cflag/cflags.v
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ pub fn (cf &CFlag) eval() ?string {
panic('>> error: none of the paths ${svalues} exist')
}
if remainder.starts_with(wexisting_literal) {
found, spath, delta_i, svalues := find_first_existing_path(remainder,
wexisting_literal)
found, spath, delta_i, _ := find_first_existing_path(remainder, wexisting_literal)
if found {
value_builder.write_string(spath)
i += delta_i
Expand Down

0 comments on commit f5f0292

Please sign in to comment.