auto merge of #9659 : alexcrichton/rust/fix-fmt, r=huonw

I was a little too trigger-happy in migrating from `format!` to `fmt!`...
This commit is contained in:
bors 2013-10-01 10:11:31 -07:00
commit 24a253778a
1 changed files with 1 additions and 1 deletions

View File

@ -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),+) => ({