diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-10-01 10:01:14 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-10-01 10:01:14 -0700 |
| commit | 62855e2c089d73a2f08c96fd3b369ce2dcb08cb5 (patch) | |
| tree | c2b943d3e1d53645c97c4ebadbd6fd1b633de026 /src/libsyntax/ext | |
| parent | 320af9b15723b10c31daa2e9fa8266486f4ba009 (diff) | |
| download | rust-62855e2c089d73a2f08c96fd3b369ce2dcb08cb5.tar.gz rust-62855e2c089d73a2f08c96fd3b369ce2dcb08cb5.zip | |
Fix usage of the old debug! macros
Diffstat (limited to 'src/libsyntax/ext')
| -rw-r--r-- | src/libsyntax/ext/expand.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ext/expand.rs b/src/libsyntax/ext/expand.rs index 5118184bf00..39540deb38f 100644 --- a/src/libsyntax/ext/expand.rs +++ b/src/libsyntax/ext/expand.rs @@ -821,7 +821,7 @@ pub fn std_macros() -> @str { if lvl <= __log_level() { format_args!(|args| { ::std::logging::log(lvl, args) - }, \"{}\", fmt!(\"{:?}\", $arg)) + }, \"{}\", fmt!(\"%?\", $arg)) } }); ($lvl:expr, $($arg:expr),+) => ({ |
