mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-29 06:23:25 +00:00
Fix formatting
This commit is contained in:
parent
df7b4289cb
commit
54acf874a6
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ pub fn read_version(dylib_path: &AbsPath) -> io::Result<String> {
|
||||||
let len_bytes = &dot_rustc[8..16];
|
let len_bytes = &dot_rustc[8..16];
|
||||||
let data_len = u64::from_le_bytes(len_bytes.try_into().unwrap()) as usize;
|
let data_len = u64::from_le_bytes(len_bytes.try_into().unwrap()) as usize;
|
||||||
(&dot_rustc[16..data_len + 12], 17)
|
(&dot_rustc[16..data_len + 12], 17)
|
||||||
}
|
}
|
||||||
_ => {
|
_ => {
|
||||||
return Err(io::Error::new(
|
return Err(io::Error::new(
|
||||||
io::ErrorKind::InvalidData,
|
io::ErrorKind::InvalidData,
|
||||||
|
|
Loading…
Reference in a new issue