diff --git a/cmd/stindex/main.go b/cmd/stindex/main.go index 8b7ea9cfc..a1b1b8e82 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()) } } }