K 10 svn:author V 7 git2svn K 8 svn:date V 27 2022-07-29T17:11:01.526885Z K 7 svn:log V 621 Fix unused variable warning in mlx5_fs_tree.c With clang 15, the following -Werror warning is produced: sys/dev/mlx5/mlx5_core/mlx5_fs_tree.c:1408:15: error: variable 'candidate_group_num' set but not used [-Werror,-Wunused-but-set-variable] unsigned int candidate_group_num = 0; ^ The 'candidate_group_num' variable appears to have been a debugging aid that has never been used for anything, so remove it. MFC after: 3 days (cherry picked from commit 6332ad8673fb108dcb8af0aaa42d75ea845748d7) Git Hash: 8411ec0f213d20a4e6a72a2694190ea4bd3fff73 Git Author: dim@FreeBSD.org END