From 7a1648059bcec9f9757b602beae5d4d842b9bb72 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Tue, 26 Mar 2019 16:13:36 +1100 Subject: [PATCH] Copter: stop passing dataflash into handle_radio_status --- ArduCopter/GCS_Mavlink.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArduCopter/GCS_Mavlink.cpp b/ArduCopter/GCS_Mavlink.cpp index 3b4848e927..f4611fb7cf 100644 --- a/ArduCopter/GCS_Mavlink.cpp +++ b/ArduCopter/GCS_Mavlink.cpp @@ -1164,7 +1164,7 @@ void GCS_MAVLINK_Copter::handleMessage(mavlink_message_t* msg) case MAVLINK_MSG_ID_RADIO: case MAVLINK_MSG_ID_RADIO_STATUS: // MAV ID: 109 { - handle_radio_status(msg, copter.logger, copter.should_log(MASK_LOG_PM)); + handle_radio_status(msg, copter.should_log(MASK_LOG_PM)); break; }