Fix missing cast in do_cc

Apparently not needed on Mac (clang?), but breaking the win and linux boxes.
This commit is contained in:
Marijn Haverbeke 2011-09-22 09:17:26 +02:00
parent 8c02adc630
commit 5e3d0e304f

View file

@ -417,7 +417,7 @@ sweep(rust_task *task, const std::set<void *> &marked) {
void
do_cc(rust_task *task) {
DPRINT("cc; n allocs = %lu\n", task->local_allocs.size());
DPRINT("cc; n allocs = %lu\n", (long unsigned int)task->local_allocs.size());
irc_map ircs;
irc::compute_ircs(task, ircs);