From fa4399bdbe0d77c12355a4962b4da6f72c3d87d0 Mon Sep 17 00:00:00 2001 From: Kartik Dua Date: Tue, 8 Apr 2025 01:40:22 +0530 Subject: [PATCH] Formatted Document --- src/find/matchers/printf.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/find/matchers/printf.rs b/src/find/matchers/printf.rs index deadb45..b672215 100644 --- a/src/find/matchers/printf.rs +++ b/src/find/matchers/printf.rs @@ -398,9 +398,9 @@ fn format_directive<'entry>( // but in reality it just returns the number of blocks, *regardless // of their size on the filesystem*. That behavior is copied here, // even though it's arguably not 100% correct. - let bs = if *large_blocks {1024} else {512}; + let bs = if *large_blocks { 1024 } else { 512 }; let blocks = len.div_ceil(bs); - + blocks.to_string().into() }