aboutsummaryrefslogtreecommitdiff
path: root/zhead/header.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2017-07-17 14:10:41 +0200
committerDimitri Sokolyuk <demon@dim13.org>2017-07-17 14:10:41 +0200
commit1ac238a3f215743619bd876dbcce65f0e17b99b3 (patch)
tree3b3a237a1940a0bd5b78ffac5138e609ffdc8ba9 /zhead/header.go
parent0a2aacf3fd8fc8be274df82f264bd38974bd61f9 (diff)
bikeshadding
Diffstat (limited to 'zhead/header.go')
-rw-r--r--zhead/header.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/zhead/header.go b/zhead/header.go
index 76f17bc..46b9736 100644
--- a/zhead/header.go
+++ b/zhead/header.go
@@ -27,8 +27,7 @@ func (h Header) Print(w io.Writer) error {
fmt.Fprintf(w, "date=%v\n", h.Date.Format(time.RFC3339))
fmt.Fprintf(w, "key=%v\n", h.KeyFile)
fmt.Fprintf(w, "algorithm=%v\n", h.Alg)
- fmt.Fprintf(w, "blocksize=%v\n", h.BlockSize)
- fmt.Fprintf(w, "\n")
+ fmt.Fprintf(w, "blocksize=%v\n\n", h.BlockSize)
for _, sum := range h.Sums {
fmt.Fprintf(w, "%x\n", sum)
}