Skip to content

Commit 5e3d0e3

Browse files
committed
Fix missing cast in do_cc
Apparently not needed on Mac (clang?), but breaking the win and linux boxes.
1 parent 8c02adc commit 5e3d0e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rt/rust_cc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ sweep(rust_task *task, const std::set<void *> &marked) {
417417

418418
void
419419
do_cc(rust_task *task) {
420-
DPRINT("cc; n allocs = %lu\n", task->local_allocs.size());
420+
DPRINT("cc; n allocs = %lu\n", (long unsigned int)task->local_allocs.size());
421421

422422
irc_map ircs;
423423
irc::compute_ircs(task, ircs);

0 commit comments

Comments
 (0)