Skip to content

Commit

Permalink
Merge pull request #1 from dops-at/dops-at-patch-1
Browse files Browse the repository at this point in the history
Allow larger offset when using x to ignore bytes
  • Loading branch information
dops-at authored May 31, 2024
2 parents fc7638e + 8af9dc8 commit 367b4b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasmota/tasmota_xsns_sensor/xsns_53_sml.ino
Original file line number Diff line number Diff line change
Expand Up @@ -2033,7 +2033,7 @@ void SML_Decode(uint8_t index) {
} else {
mp++;
if (isdigit(*mp)) {
uint8_t skip = strtol((char*)mp, (char**)&mp, 10);
uint16_t skip = strtol((char*)mp, (char**)&mp, 10);
cp += skip;
}
}
Expand Down

0 comments on commit 367b4b6

Please sign in to comment.