Skip to content

Commit 57f0514

Browse files
committed
Style fix
1 parent 1561954 commit 57f0514

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/panicking.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ pub fn panic_fmt(fmt: fmt::Arguments, file_line_col: &(&'static str, u32, u32))
8686
extern {
8787
#[lang = "panic_fmt"]
8888
#[unwind]
89-
fn panic_impl(fmt: fmt::Arguments, file: &'static str, line: u32, col :u32) -> !;
89+
fn panic_impl(fmt: fmt::Arguments, file: &'static str, line: u32, col: u32) -> !;
9090
}
9191
let (file, line, col) = *file_line_col;
9292
unsafe { panic_impl(fmt, file, line, col) }

0 commit comments

Comments
 (0)