stindex: add some missing newlines

This commit is contained in:
Jakob Borg 2015-05-12 11:47:30 +02:00
parent d603998617
commit d898277f62
1 changed files with 3 additions and 3 deletions

View File

@ -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())
}
}
}