From 5e3d0e304f0d60bcef3b83af6264d99aa9172130 Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Thu, 22 Sep 2011 09:17:26 +0200 Subject: [PATCH] Fix missing cast in do_cc Apparently not needed on Mac (clang?), but breaking the win and linux boxes. --- src/rt/rust_cc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rt/rust_cc.cpp b/src/rt/rust_cc.cpp index 84fb6e8456f..77965c3d7f9 100644 --- a/src/rt/rust_cc.cpp +++ b/src/rt/rust_cc.cpp @@ -417,7 +417,7 @@ sweep(rust_task *task, const std::set &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);