about summary refs log tree commit diff
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2017-07-02 09:06:08 +0200
committerest31 <MTest31@outlook.com>2017-07-02 13:53:29 +0200
commit57f0514febd7593f6034c293f8c0d56765bc8d51 (patch)
tree5c01c21dbe61aacaa9fcf353004d5b8fa3adc89b
parent1561954ea4c403ce7ea54cb83c944857c255b909 (diff)
downloadrust-57f0514febd7593f6034c293f8c0d56765bc8d51.tar.gz
rust-57f0514febd7593f6034c293f8c0d56765bc8d51.zip
Style fix
-rw-r--r--src/libcore/panicking.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/panicking.rs b/src/libcore/panicking.rs
index eae33cf0422..f5a7e78d0fa 100644
--- a/src/libcore/panicking.rs
+++ b/src/libcore/panicking.rs
@@ -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) }