From c487d120e3ba14cfb1d4f578680f7f315fe10457 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Wed, 30 Jan 2019 12:44:37 +1100 Subject: [PATCH] GCS_Common: stop passing mission to Write_EntireMission --- libraries/GCS_MAVLink/GCS_Common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/GCS_MAVLink/GCS_Common.cpp b/libraries/GCS_MAVLink/GCS_Common.cpp index 2ac4ae649c..9a005b0eae 100644 --- a/libraries/GCS_MAVLink/GCS_Common.cpp +++ b/libraries/GCS_MAVLink/GCS_Common.cpp @@ -3031,7 +3031,7 @@ void GCS_MAVLINK::handle_common_mission_message(mavlink_message_t *msg) case MAVLINK_MSG_ID_MISSION_ITEM_INT: { if (handle_mission_item(msg, *_mission)) { - AP::logger().Write_EntireMission(*_mission); + AP::logger().Write_EntireMission(); } break; }