Skip to content

Commit

Permalink
Remove stray newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
zuckschwerdt committed Jul 13, 2024
1 parent 7ff690a commit 01ae643
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/devices/acurite.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down
1 change: 0 additions & 1 deletion src/devices/tpms_eezrv.c
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit 01ae643

Please sign in to comment.