diff options
| author | 2026-03-29 10:55:24 +0000 | |
|---|---|---|
| committer | 2026-03-29 10:55:24 +0000 | |
| commit | 9da262c92189e4007834bf2023f0c032f2a1a0d9 (patch) | |
| tree | 47eeae7b32fa1d24ab6cfdf942352ef7f566afc5 /object/header/append.go | |
| parent | object/id: Nosec G505 for sha1 (diff) | |
| signature | No signature | |
object{,/type}: Fix up API shape v0.1.142
Diffstat (limited to 'object/header/append.go')
| -rw-r--r-- | object/header/append.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/object/header/append.go b/object/header/append.go index 8c0d928c..6d824740 100644 --- a/object/header/append.go +++ b/object/header/append.go @@ -12,7 +12,7 @@ func Append(dst []byte, ty objecttype.Type, size int64) ([]byte, bool) { return nil, false } - tyName, ok := objecttype.Name(ty) + tyName, ok := ty.Name() if !ok { return nil, false } |
