about summary refs log tree commit diff
diff options
context:
space:
mode:
authorElliott Slaughter <eslaughter@mozilla.com>2012-08-24 10:57:36 -0700
committerElliott Slaughter <eslaughter@mozilla.com>2012-08-24 14:01:26 -0700
commite68db3ad3c544652fbd755598a6a4cbe6f8bd225 (patch)
treeda2140c2a65140986ae8c96750b0a0ab7ea3c9be
parenta7a74c79fa09d918703083f35d22c77351bfc992 (diff)
rustc: Fix for updated macro syntax.
-rw-r--r--src/rustc/middle/trans/type_of.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rustc/middle/trans/type_of.rs b/src/rustc/middle/trans/type_of.rs
index a7cde34fa4c..03606ede7aa 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);
 }