Skip to content

Commit 4f885f4

Browse files
Make fmt shut up
1 parent 61a8dbf commit 4f885f4

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

objdiff-core/src/arch/ppc.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,8 +305,11 @@ fn decode_exception_info(file: &File<'_>) -> Result<Option<BTreeMap<usize, Excep
305305
let data = match decode_extab(extab_data) {
306306
Ok(decoded_data) => decoded_data,
307307
Err(e) => {
308-
log::warn!("Exception table decoding failed for function {}, reason: {}",
309-
extab_func_name, e.to_string());
308+
log::warn!(
309+
"Exception table decoding failed for function {}, reason: {}",
310+
extab_func_name,
311+
e.to_string()
312+
);
310313
return Ok(None);
311314
}
312315
};

0 commit comments

Comments
 (0)