DataFlash: replace /* fall through */ with FALLTHROUGH;

This commit is contained in:
Dr.-Ing. Amilcar do Carmo Lucas 2018-05-24 23:29:49 +02:00 committed by Randy Mackay
parent 88dc17fe6e
commit 594911f0b4

View File

@ -561,11 +561,11 @@ void DataFlash_Class::handle_mavlink_msg(GCS_MAVLINK &link, mavlink_message_t* m
FOR_EACH_BACKEND(remote_log_block_status_msg(link.get_chan(), msg));
break;
case MAVLINK_MSG_ID_LOG_REQUEST_LIST:
/* fall through */
FALLTHROUGH;
case MAVLINK_MSG_ID_LOG_REQUEST_DATA:
/* fall through */
FALLTHROUGH;
case MAVLINK_MSG_ID_LOG_ERASE:
/* fall through */
FALLTHROUGH;
case MAVLINK_MSG_ID_LOG_REQUEST_END:
handle_log_message(link, msg);
break;