1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

cksum: fix formatting in cksum.rs

This commit is contained in:
Vardhan Patil 2023-12-30 16:02:10 +05:30
parent 09ef150085
commit 7caa0bcdea

View file

@ -250,7 +250,6 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
let input_length = matches.get_one::<usize>(options::LENGTH);
let length = if let Some(length) = input_length {
if length % 8 != 0 {
// GNU's implementation seem to use these quotation marks
// in their error messages, so we do the same.