Skip to content

Commit

Permalink
Minor removing Trailing whitespace error
Browse files Browse the repository at this point in the history
  • Loading branch information
ProfBoc75 committed Nov 6, 2024
1 parent 0dfe718 commit 7b4e559
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/devices/thermopro_tp82xb.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ static int thermopro_tp82xb_decode(r_device *decoder, bitbuffer_t *bitbuffer)
decoder_logf(decoder, 1, __func__, "Checksum error, calculated %x, expected %x, not tp829b model", checksum, b[8]);
ret = DECODE_FAIL_MIC;
}
else
else
model = 9; // ie tp829b
}

Expand All @@ -128,7 +128,7 @@ static int thermopro_tp82xb_decode(r_device *decoder, bitbuffer_t *bitbuffer)
decoder_logf(decoder, 1, __func__, "Checksum error, calculated %x, expected %x, not tp828b model", checksum, b[11]);
ret = DECODE_FAIL_MIC;
}
else
else
model = 8; // ie tp828b
}

Expand Down

0 comments on commit 7b4e559

Please sign in to comment.