From 00d8e0b0a3edbede2432391bded166ad10066e2d Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 2 Feb 2022 11:14:41 -0500 Subject: [PATCH] add minimum size to process option --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 1e0d947..24c26bd 100644 --- a/main.go +++ b/main.go @@ -108,7 +108,7 @@ func doSingleImage(f string, c config, s stats) stats { if st.Size() < int64(c.AtLeast)*1024 { s.StartingBytes += uint64(st.Size()) if !c.Quiet { - fmt.Printf("Ignoring %s as %d bytes are below threashold", f, st.Size()) + fmt.Printf("Ignoring %s as %d bytes are below threshold\n", f, st.Size()) } return s }