Fix style issue

This commit is contained in:
Alexander Neumann 2015-07-21 21:24:06 +02:00
parent 99dae57b4f
commit 1ac72b8813
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@ type file struct {
func newFile(repo *repository.Repository, node *restic.Node) (*file, error) {
sizes := make([]uint32, len(node.Content))
for i, blobId := range node.Content {
length, err := repo.Index().LookupSize(blobId)
for i, blobID := range node.Content {
length, err := repo.Index().LookupSize(blobID)
if err != nil {
return nil, err
}