From e68db3ad3c544652fbd755598a6a4cbe6f8bd225 Mon Sep 17 00:00:00 2001 From: Elliott Slaughter Date: Fri, 24 Aug 2012 10:57:36 -0700 Subject: [PATCH] rustc: Fix for updated macro syntax. --- src/rustc/middle/trans/type_of.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); }