diff options
| author | 2026-03-05 21:25:39 +0800 | |
|---|---|---|
| committer | 2026-03-05 21:25:39 +0800 | |
| commit | 9ba4a988bcc7879b62e0c0fff910113df481c599 (patch) | |
| tree | 0b5d4318af242b96102a857a8593e59b1b9f2c3a /format/pack/ingest/thin_fix.go | |
| parent | *: Fix wsl_v5 again (diff) | |
| signature | No signature | |
*: Fix various lints
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 { |
