aboutsummaryrefslogtreecommitdiff
path: root/format/pack/ingest/progress_step.go
blob: cdfc232267a6908a2534b692de356085ad549821 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
package ingest

func progressStep(total uint32) uint32 {
	if total <= 200 {
		return 1
	}

	return total / 200
}