diff --git a/example/io/multiple/main.go b/example/io/multiple/main.go index d962ef5..d534452 100644 --- a/example/io/multiple/main.go +++ b/example/io/multiple/main.go @@ -56,7 +56,7 @@ // create bar with appropriate decorators bar := p.AddBar(int(size)). - PrependCounters(mpb.UnitBytes, 19). + PrependCounters(mpb.UnitBytes, 20). PrependName(name, len(name)). AppendETA() // create proxy reader diff --git a/example/io/single/main.go b/example/io/single/main.go index 4f51981..5e1db17 100644 --- a/example/io/single/main.go +++ b/example/io/single/main.go @@ -40,7 +40,7 @@ // may not complete, thus better always use even in single thread. p.Wg.Add(1) - bar := p.AddBar(int(size)).PrependCounters(mpb.UnitBytes, 19).AppendETA() + bar := p.AddBar(int(size)).PrependCounters(mpb.UnitBytes, 20).AppendETA() // create proxy reader reader := bar.ProxyReader(resp.Body)