fix rdi_format_parse and rdi_breakpad_from_pdb build

This commit is contained in:
Ryan Fleury
2024-06-13 17:12:31 -07:00
parent 5349838633
commit 933b4c90de
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -278,7 +278,7 @@ rdi_line_info_idx_range_from_voff(RDI_ParsedLineTable *line_info, RDI_U64 voff,
}
//- rjf: scan rightward, to count # of line info with this voff
for(U64 idx = result; idx < line_info->count; idx += 1)
for(RDI_U64 idx = result; idx < line_info->count; idx += 1)
{
if(line_info->voffs[idx] == voff)
{