Skip to content

Commit 40e2b9c

Browse files
committed
Fix formatting
1 parent 937e4a8 commit 40e2b9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/arch/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ pub(crate) unsafe fn update(state: u64, bytes: &[u8], params: CrcParams) -> u64
7070
pub(crate) unsafe fn update(state: u64, bytes: &[u8], params: CrcParams) -> u64 {
7171
use std::arch::is_x86_feature_detected;
7272

73-
if bytes.len() >= 256
73+
if bytes.len() >= 256
7474
&& is_x86_feature_detected!("vpclmulqdq")
7575
&& is_x86_feature_detected!("avx512f")
7676
&& is_x86_feature_detected!("avx512vl")

0 commit comments

Comments
 (0)