about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorBen Blum <bblum@andrew.cmu.edu>2012-07-31 13:25:18 -0400
committerBen Blum <bblum@andrew.cmu.edu>2012-07-31 13:25:18 -0400
commit18851e4248855228b666f9b9877c03f4eb48a8a9 (patch)
treee534036bb235da3a3a6622fbd2a493a5b6d00eb0 /src/libsyntax
parente7d26a491724f347059a2f89cc4da676b6d2c970 (diff)
downloadrust-18851e4248855228b666f9b9877c03f4eb48a8a9.tar.gz
rust-18851e4248855228b666f9b9877c03f4eb48a8a9.zip
Build fix: debug![ to debug!{
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/parse/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs
index f7b899cca95..594ec844bd3 100644
--- a/src/libsyntax/parse/parser.rs
+++ b/src/libsyntax/parse/parser.rs
@@ -275,7 +275,7 @@ class parser {
             let d = p.parse_ty_fn_decl(pur);
             let hi = p.last_span.hi;
             let self_ty = spanned(lo, hi, sty_by_ref);  // XXX: Wrong.
-            debug!["parse_trait_methods(): trait method signature ends in \
+            debug!{"parse_trait_methods(): trait method signature ends in \
                     `%s`",
                    token_to_str(p.reader, p.token)};
             alt p.token {