From e330cfc34fb18cde1413413e096211957bd117a7 Mon Sep 17 00:00:00 2001 From: Evan Su <48808396+HACKERALERT@users.noreply.github.com> Date: Sat, 27 Apr 2024 14:05:54 -0400 Subject: [PATCH] Minor tweaks --- cli/v2/picocrypt/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/v2/picocrypt/main.go b/cli/v2/picocrypt/main.go index 6751e5f..7dbd3a3 100644 --- a/cli/v2/picocrypt/main.go +++ b/cli/v2/picocrypt/main.go @@ -44,7 +44,7 @@ func parse() int { os.Exit(1) } f = flag.Bool("f", false, "(decryption) attempt to fix corruption") - k = flag.Bool("k", false, "(decryption) keep output unconditionally") + k = flag.Bool("k", false, "(decryption) keep output even if corrupted") p = flag.Bool("p", false, "(encryption) use paranoid mode") r = flag.Bool("r", false, "(encryption) encode with Reed-Solomon") flag.Parse() @@ -612,7 +612,7 @@ func work() int { fin.Close() fout.Close() - fmt.Print("Completed -> ", fout.Name()) + fmt.Println("Completed -> ", fout.Name()) return 0 }