From d0a7c3cf951f7980e982677008706bfe2ff4117f Mon Sep 17 00:00:00 2001 From: Randy Mackay Date: Mon, 22 May 2023 18:36:02 +0900 Subject: [PATCH] Rover: auto mode format fix --- Rover/mode_auto.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rover/mode_auto.cpp b/Rover/mode_auto.cpp index e9bdd4c6f0..0b63954796 100644 --- a/Rover/mode_auto.cpp +++ b/Rover/mode_auto.cpp @@ -195,7 +195,7 @@ bool ModeAuto::get_desired_location(Location& destination) const return rover.mode_loiter.get_desired_location(destination); case Auto_Guided: case Auto_NavScriptTime: - return rover.mode_guided.get_desired_location(destination);\ + return rover.mode_guided.get_desired_location(destination); } // we should never reach here but just in case