Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Style fix
  • Loading branch information
est31 committed Jul 2, 2017
1 parent 1561954 commit 57f0514
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/panicking.rs
Expand Up @@ -86,7 +86,7 @@ pub fn panic_fmt(fmt: fmt::Arguments, file_line_col: &(&'static str, u32, u32))
extern {
#[lang = "panic_fmt"]
#[unwind]
fn panic_impl(fmt: fmt::Arguments, file: &'static str, line: u32, col :u32) -> !;
fn panic_impl(fmt: fmt::Arguments, file: &'static str, line: u32, col: u32) -> !;
}
let (file, line, col) = *file_line_col;
unsafe { panic_impl(fmt, file, line, col) }
Expand Down

0 comments on commit 57f0514

Please sign in to comment.