File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -228,10 +228,10 @@ void pe_add_sections(XEXFile& file)
228
228
offset += 8 ;
229
229
}
230
230
231
- msg (" Parsing .pdata and creating %lld functions...\n " , funcs.size ());
231
+ msg (" Parsing .pdata and creating %d functions...\n " , int ( funcs.size () ));
232
232
233
233
// 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 () ));
235
235
236
236
size_t num = 0 ;
237
237
for (auto & kvp : funcs)
@@ -258,7 +258,7 @@ void pe_add_sections(XEXFile& file)
258
258
// update every few funcs
259
259
if (++num % 50 == 0 )
260
260
{
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 () ));
262
262
}
263
263
}
264
264
You can’t perform that action at this time.
0 commit comments