1
0
Fork 0
mirror of https://github.com/vbatts/dedupe-linker.git synced 2025-07-26 03:50:29 +00:00

*: fixup and go vet

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2016-09-08 10:48:40 -04:00
parent 2dadf80440
commit 71720092db
Signed by: vbatts
GPG key ID: 10937E57733F1362
4 changed files with 4 additions and 5 deletions

View file

@ -29,7 +29,7 @@ func DetermineHash(str string) (h crypto.Hash) {
case "sha512":
h = crypto.SHA512
default:
log.Println("WARNING: unknown cipher %q. using 'sha1'", str)
log.Printf("WARNING: unknown cipher %q. using 'sha1'", str)
h = crypto.SHA1
}