From 34bf9780af4af75ab3c03d5912fe7f5c9334b8d8 Mon Sep 17 00:00:00 2001 From: lkoester Date: Thu, 26 Jan 2023 19:08:29 +0100 Subject: [PATCH] fmt and clippy --- src/tc.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/tc.rs b/src/tc.rs index 1124687..91284e0 100644 --- a/src/tc.rs +++ b/src/tc.rs @@ -442,7 +442,9 @@ impl<'app_data> PusTc<'app_data> { impl PartialEq for PusTc<'_> { fn eq(&self, other: &Self) -> bool { - self.sp_header == other.sp_header && self.sec_header == other.sec_header && self.app_data == other.app_data + self.sp_header == other.sp_header + && self.sec_header == other.sec_header + && self.app_data == other.app_data } }