diff --git a/src/devices/acurite.c b/src/devices/acurite.c index b5708c147..67a9ff23d 100644 --- a/src/devices/acurite.c +++ b/src/devices/acurite.c @@ -879,7 +879,6 @@ static int acurite_atlas_decode(r_device *decoder, bitbuffer_t *bitbuffer, unsig int raincounter = ((bb[5] & 0x03) << 7) | (bb[6] & 0x7F); /* clang-format off */ - data = data_dbl(data, "wind_dir_deg", NULL, "%.1f", wind_dir); data = data_dbl(data, "rain_in", "Rainfall Accumulation", "%.2f in", raincounter * 0.01f); /* clang-format on */ diff --git a/src/devices/tpms_eezrv.c b/src/devices/tpms_eezrv.c index 8f924249a..ae5729125 100644 --- a/src/devices/tpms_eezrv.c +++ b/src/devices/tpms_eezrv.c @@ -121,7 +121,6 @@ static int tpms_eezrv_decode(r_device *decoder, bitbuffer_t *bitbuffer) // Mystery flag at (flags2 & 0x20) showed up during low batt testing char id_str[7]; - snprintf(id_str, sizeof(id_str), "%02x%02x%02x", b[0], b[1], b[2]); char flags_str[5];