From fda4487afedfc115afa90db5d5088c2d73bd59b2 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Tue, 26 Mar 2019 16:13:26 +1100 Subject: [PATCH] Rover: stop passing dataflash into handle_radio_status --- APMrover2/GCS_Mavlink.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/APMrover2/GCS_Mavlink.cpp b/APMrover2/GCS_Mavlink.cpp index 240af57dcb..23eae256f9 100644 --- a/APMrover2/GCS_Mavlink.cpp +++ b/APMrover2/GCS_Mavlink.cpp @@ -997,7 +997,7 @@ void GCS_MAVLINK_Rover::handleMessage(mavlink_message_t* msg) case MAVLINK_MSG_ID_RADIO: case MAVLINK_MSG_ID_RADIO_STATUS: { - handle_radio_status(msg, rover.logger, rover.should_log(MASK_LOG_PM)); + handle_radio_status(msg, rover.should_log(MASK_LOG_PM)); break; }