From 7a88f17c362a6c7b57ed9d05972d5aab752d2161 Mon Sep 17 00:00:00 2001 From: timofey Date: Fri, 30 Jun 2023 20:01:43 +0000 Subject: [PATCH] `AddressPointMismatch` fix format --- src/rstd/cast.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rstd/cast.rs b/src/rstd/cast.rs index 3bc5dff..cbfd72b 100644 --- a/src/rstd/cast.rs +++ b/src/rstd/cast.rs @@ -52,7 +52,7 @@ impl<'a> Display for CastError<'a> { index, } => write!( f, - "address mismatch at index {}: {}>={}", + "address mismatch at index {}: {}!={}", index, hex::encode(expected), hex::encode(received),