mirror of https://github.com/ArduPilot/ardupilot
AP_Frsky_Telem: Remove meaningless semicolons
This commit is contained in:
parent
66193bde3a
commit
127f356c86
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue