diff options
| author | 2026-03-23 03:25:44 +0000 | |
|---|---|---|
| committer | 2026-03-23 03:27:52 +0000 | |
| commit | 4a796e64ac576d6a3e3f2fe6174c4aa476ea0c5c (patch) | |
| tree | 44d72a20076ceab0981d0b553693d26ca36cc0be /refstore/files/batch_begin.go | |
| parent | receivepack: Lifecycle/ownership docs (diff) | |
| signature | No signature | |
refstore: Improve interfaces, errors, and make batch work v0.1.92
Diffstat (limited to 'refstore/files/batch_begin.go')
| -rw-r--r-- | refstore/files/batch_begin.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/refstore/files/batch_begin.go b/refstore/files/batch_begin.go index d45af9d3..06459b2c 100644 --- a/refstore/files/batch_begin.go +++ b/refstore/files/batch_begin.go @@ -8,6 +8,6 @@ import "codeberg.org/lindenii/furgit/refstore" func (store *Store) BeginBatch() (refstore.Batch, error) { return &Batch{ store: store, - ops: make([]txOp, 0, 8), + ops: make([]queuedUpdate, 0, 8), }, nil } |
