Skip to content

Commit

Permalink
Minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
HACKERALERT committed Apr 27, 2024
1 parent 0a6e6bb commit e330cfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/v2/picocrypt/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -612,7 +612,7 @@ func work() int {

fin.Close()
fout.Close()
fmt.Print("Completed -> ", fout.Name())
fmt.Println("Completed -> ", fout.Name())
return 0
}

Expand Down

0 comments on commit e330cfc

Please sign in to comment.