Skip to content

Commit 1f07b4d

Browse files
committed
idaloader: fix clang warnings
1 parent 387f047 commit 1f07b4d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

idaloader.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,10 +228,10 @@ void pe_add_sections(XEXFile& file)
228228
offset += 8;
229229
}
230230

231-
msg("Parsing .pdata and creating %lld functions...\n", funcs.size());
231+
msg("Parsing .pdata and creating %d functions...\n", int(funcs.size()));
232232

233233
// display messagebox prompt to user so they can cancel if needed
234-
show_wait_box("Marking functions from .pdata... (0/%lld)", funcs.size());
234+
show_wait_box("Marking functions from .pdata... (0/%d)", int(funcs.size()));
235235

236236
size_t num = 0;
237237
for (auto& kvp : funcs)
@@ -258,7 +258,7 @@ void pe_add_sections(XEXFile& file)
258258
// update every few funcs
259259
if (++num % 50 == 0)
260260
{
261-
replace_wait_box("Marking functions from .pdata... (%lld/%lld)", num, funcs.size());
261+
replace_wait_box("Marking functions from .pdata... (%d/%d)", int(num), int(funcs.size()));
262262
}
263263
}
264264

0 commit comments

Comments
 (0)