From 569435be77ed336feeb7232d252761f237594809 Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Thu, 2 Jan 2025 17:01:47 -0800 Subject: [PATCH] Consistency --- hal/src/main/native/athena/HAL.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hal/src/main/native/athena/HAL.cpp b/hal/src/main/native/athena/HAL.cpp index df969d38a44..1bda77b3458 100644 --- a/hal/src/main/native/athena/HAL.cpp +++ b/hal/src/main/native/athena/HAL.cpp @@ -350,8 +350,7 @@ void InitializeTeamNumber(void) { std::string_view hostname{hostnameBuf, sizeof(hostnameBuf)}; // hostname is frc-{TEAM}-roborio - // Split string around '-' (max of 2 splits), take the second element of the - // resulting array. + // Split string around '-' (max of 2 splits), take the second element teamNumber = 0; int i = 0; wpi::split(hostname, '-', 2, false, [&](auto part) {