diff options
Diffstat (limited to 'format/pack/ingest/thin_fix.go')
| -rw-r--r-- | format/pack/ingest/thin_fix.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/format/pack/ingest/thin_fix.go b/format/pack/ingest/thin_fix.go index 5883ac23..767816ed 100644 --- a/format/pack/ingest/thin_fix.go +++ b/format/pack/ingest/thin_fix.go @@ -275,7 +275,7 @@ func encodePackEntryHeader(ty objecttype.Type, size int64) []byte { panic(err) } - c := byte((uint8(ty) << 4) | byte(s&0x0f)) + c := (uint8(ty) << 4) | byte(s&0x0f) s >>= 4 for s != 0 { |
