Fix signature of panic_fmt even further.

pull/1/head
whitequark 2018-03-27 08:55:35 +00:00
parent dce70f352a
commit 5a5596f7a2
1 changed files with 2 additions and 2 deletions

View File

@ -29,9 +29,9 @@ macro_rules! println {
($fmt:expr, $($arg:tt)*) => (print!(concat!($fmt, "\n"), $($arg)*)); ($fmt:expr, $($arg:tt)*) => (print!(concat!($fmt, "\n"), $($arg)*));
} }
#[no_mangle]
#[lang = "panic_fmt"] #[lang = "panic_fmt"]
pub fn panic_fmt(msg: fmt::Arguments, file: &'static str, line: u32, col: u32) -> ! { #[no_mangle]
pub extern fn rust_begin_panic(msg: fmt::Arguments, file: &'static str, line: u32, col: u32) -> ! {
println!("panic at {}:{}:{}: {}", file, line, col, msg); println!("panic at {}:{}:{}: {}", file, line, col, msg);
loop {} loop {}
} }