AP_Frsky_Telem: Remove meaningless semicolons

This commit is contained in:
murata 2022-02-05 21:18:45 +09:00 committed by Randy Mackay
parent 66193bde3a
commit 127f356c86
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ public:
}
bool get_uint8(uint8_t &value, const uint8_t offset) const WARN_IF_UNUSED {
return get_bytes((uint8_t*)&value, offset, 1);;
return get_bytes((uint8_t*)&value, offset, 1);
}
bool set_uint8(const uint8_t value, const uint8_t offset) WARN_IF_UNUSED {
return set_bytes((uint8_t*)&value, offset, 1);