cmd/torrent-verify/main.go | 2 +- diff --git a/cmd/torrent-verify/main.go b/cmd/torrent-verify/main.go index d7b2dd3d72f27ef4de9c10b2fcd6c3d6a958a24e..0b7f21543bcd3c4bef5bcf2764c6329b10b0d417 100644 --- a/cmd/torrent-verify/main.go +++ b/cmd/torrent-verify/main.go @@ -58,7 +58,7 @@ good := bytes.Equal(hash.Sum(nil), p.Hash().Bytes()) if !good { return fmt.Errorf("hash mismatch at piece %d", i) } - fmt.Printf("%d: %x: %v\n", i, p.Hash(), good) + fmt.Printf("%d: %v: %v\n", i, p.Hash(), good) } return nil }