diff options
Diffstat (limited to 'plumbing/format/idxfile/decoder.go')
-rw-r--r-- | plumbing/format/idxfile/decoder.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plumbing/format/idxfile/decoder.go b/plumbing/format/idxfile/decoder.go index fea5f0b..4243f76 100644 --- a/plumbing/format/idxfile/decoder.go +++ b/plumbing/format/idxfile/decoder.go @@ -104,7 +104,7 @@ func readObjectNames(idx *Idxfile, r io.Reader) error { return err } - idx.Entries = append(idx.Entries, Entry{Hash: ref}) + idx.Entries = append(idx.Entries, &Entry{Hash: ref}) } return nil |