From 10b05667a0e33dc1885d864a2c42440cd8a702e8 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 b7cf77163c..4cac31a0d9 100644 --- a/Rover/mode_auto.cpp +++ b/Rover/mode_auto.cpp @@ -201,7 +201,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