From a162c2f84016a0bad696257e6324db46db32131a Mon Sep 17 00:00:00 2001 From: Luke Street Date: Tue, 1 Apr 2025 23:36:47 -0600 Subject: [PATCH] Fix to_string_in_format_args warning --- objdiff-core/src/arch/ppc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objdiff-core/src/arch/ppc.rs b/objdiff-core/src/arch/ppc.rs index 520947d..fed7b01 100644 --- a/objdiff-core/src/arch/ppc.rs +++ b/objdiff-core/src/arch/ppc.rs @@ -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); }