clang-format

This commit is contained in:
Phillip Burgess 2022-12-26 10:34:14 -08:00
parent 710c724dd2
commit f71212bbc7
1 changed files with 3 additions and 2 deletions

View File

@ -350,8 +350,9 @@ void Adafruit_GPS::initDataValue(nmea_index_t idx, char *label, char *fmt,
val[idx].type = type; val[idx].type = type;
if ((int)(val[idx].type / 10) == if ((int)(val[idx].type / 10) ==
1) { // angle with sin/cos component recording 1) { // angle with sin/cos component recording
initDataValue((nmea_index_t)( initDataValue(
idx + 1)); // initialize the next two data values as well (nmea_index_t)(idx +
1)); // initialize the next two data values as well
initDataValue((nmea_index_t)(idx + 2)); initDataValue((nmea_index_t)(idx + 2));
} }
} }