diff --git a/src/decoder.rs b/src/decoder.rs index 73ce703..45aca2b 100644 --- a/src/decoder.rs +++ b/src/decoder.rs @@ -501,12 +501,12 @@ impl DecoderImpl { &mut self, what: &'static str, ) -> io::Result { - if self.current_header.content_size() != (size_of::() as u64) { + if self.current_header.content_size() != (size_of::() as u64) { io_bail!( "bad {} size: {} (expected {})", what, self.current_header.content_size(), - size_of::(), + size_of::(), ); } (&mut self.input as &mut dyn SeqRead).seq_read_entry().await