Fix to_string_in_format_args warning

This commit is contained in:
Luke Street 2025-04-01 23:36:47 -06:00
parent a474b27d55
commit a162c2f840

View File

@ -449,7 +449,7 @@ fn decode_exception_info(
log::warn!(
"Exception table decoding failed for function {}, reason: {}",
extab_func_name,
e.to_string()
e
);
return Ok(None);
}