diff --git a/src/rustc/middle/trans/type_of.rs b/src/rustc/middle/trans/type_of.rs index a7cde34fa4c1..03606ede7aa3 100644 --- a/src/rustc/middle/trans/type_of.rs +++ b/src/rustc/middle/trans/type_of.rs @@ -248,8 +248,8 @@ fn type_of_dtor(ccx: @crate_ctxt, self_ty: ty::t) -> TypeRef { fn type_of_rooted(ccx: @crate_ctxt, t: ty::t) -> TypeRef { let addrspace = base::get_tydesc(ccx, t).addrspace; - debug!{"type_of_rooted %s in addrspace %u", - ty_to_str(ccx.tcx, t), addrspace as uint}; + debug!("type_of_rooted %s in addrspace %u", + ty_to_str(ccx.tcx, t), addrspace as uint); return T_root(type_of(ccx, t), addrspace); }