Skip to content

Commit 61a8dbf

Browse files
Update ppc.rs
1 parent 5ec8989 commit 61a8dbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

objdiff-core/src/arch/ppc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ fn decode_exception_info(file: &File<'_>) -> Result<Option<BTreeMap<usize, Excep
303303
continue;
304304
};
305305
let data = match decode_extab(extab_data) {
306-
Some(decoded_data) => decoded_data,
306+
Ok(decoded_data) => decoded_data,
307307
Err(e) => {
308308
log::warn!("Exception table decoding failed for function {}, reason: {}",
309309
extab_func_name, e.to_string());

0 commit comments

Comments
 (0)