summaryrefslogtreecommitdiff
path: root/lib/textui/progress.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/textui/progress.go')
-rw-r--r--lib/textui/progress.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/textui/progress.go b/lib/textui/progress.go
index 1a5e7d8..48a3901 100644
--- a/lib/textui/progress.go
+++ b/lib/textui/progress.go
@@ -9,9 +9,8 @@ import (
"fmt"
"time"
+ "git.lukeshu.com/go/typedsync"
"github.com/datawire/dlib/dlog"
-
- "git.lukeshu.com/btrfs-progs-ng/lib/containers"
)
type Stats interface {
@@ -27,7 +26,7 @@ type Progress[T Stats] struct {
cancel context.CancelFunc
done chan struct{}
- cur containers.SyncValue[T]
+ cur typedsync.Value[T]
oldStat T
oldLine string
}