AP_GPS: Remove unused operation

Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
This commit is contained in:
Patrick José Pereira 2018-06-28 11:04:43 -03:00 committed by Francisco Ferreira
parent 7d9c947b9b
commit 10ffd89a0c
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ void AP_GPS_Backend::make_gps_time(uint32_t bcd_date, uint32_t bcd_milliseconds)
msec = v % 1000; v /= 1000;
sec = v % 100; v /= 100;
min = v % 100; v /= 100;
hour = v % 100; v /= 100;
hour = v % 100;
int8_t rmon = mon - 2;
if (0 >= rmon) {