Skip to content

Commit

Permalink
remove magic number
Browse files Browse the repository at this point in the history
  • Loading branch information
chcmedeiros committed Mar 6, 2025
1 parent 3f08a4f commit 26c4f69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/parser_impl.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ __attribute__((noinline)) parser_error_t getOutputfromIndex(uint32_t index, byte
for (uint32_t i = 0; i < index; i++) {
uint8_t has_ovk = out->ptr[0];
if(has_ovk) {
out->ptr += 33;
out->ptr += OVK_PLUS_CHECK_BYTE;
} else {
out->ptr++;
}
Expand Down

0 comments on commit 26c4f69

Please sign in to comment.