mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
type fix
This commit is contained in:
parent
9df031b5a0
commit
336bd06d88
2 changed files with 10 additions and 4 deletions
|
@ -423,7 +423,7 @@ static int bitparse_find_section(int bitstream_version, char section_name, uint3
|
|||
break;
|
||||
}
|
||||
|
||||
for (uint16_t i = 0; i < current_length && numbytes < MAX_FPGA_BIT_STREAM_HEADER_SEARCH; i++) {
|
||||
for (uint32_t i = 0; i < current_length && numbytes < MAX_FPGA_BIT_STREAM_HEADER_SEARCH; i++) {
|
||||
get_from_fpga_stream(bitstream_version, compressed_fpga_stream, output_buffer);
|
||||
numbytes++;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue