From f5f02926fc60adfa7376852d04676614c11125a4 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Fri, 21 Feb 2025 13:12:27 +0200 Subject: [PATCH] fix warning --- vlib/v/cflag/cflags.v | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vlib/v/cflag/cflags.v b/vlib/v/cflag/cflags.v index b9a275ed2d3c01..14c380c9ad6032 100644 --- a/vlib/v/cflag/cflags.v +++ b/vlib/v/cflag/cflags.v @@ -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