From d898277f627cc11146082c78426728ff6f43fafb Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Tue, 12 May 2015 11:47:30 +0200 Subject: [PATCH] stindex: add some missing newlines --- cmd/stindex/main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/stindex/main.go b/cmd/stindex/main.go index 8b7ea9cf..a1b1b8e8 100644 --- a/cmd/stindex/main.go +++ b/cmd/stindex/main.go @@ -65,13 +65,13 @@ func main() { fmt.Printf("[block] F:%q H:%x N:%q I:%d\n", folder, hash, name, binary.BigEndian.Uint32(it.Value())) case db.KeyTypeDeviceStatistic: - fmt.Printf("[dstat]\n %x\n %x", it.Key(), it.Value()) + fmt.Printf("[dstat]\n %x\n %x\n", it.Key(), it.Value()) case db.KeyTypeFolderStatistic: - fmt.Printf("[fstat]\n %x\n %x", it.Key(), it.Value()) + fmt.Printf("[fstat]\n %x\n %x\n", it.Key(), it.Value()) default: - fmt.Printf("[???]\n %x\n %x", it.Key(), it.Value()) + fmt.Printf("[???]\n %x\n %x\n", it.Key(), it.Value()) } } }