Skip to content
This repository has been archived by the owner on May 22, 2021. It is now read-only.

Commit

Permalink
Fix export.go:355: cannot use size (type int64) as type float64 in ar…
Browse files Browse the repository at this point in the history
…gument to units.HumanSize
  • Loading branch information
jwilder committed Jan 15, 2015
1 parent adafae2 commit 079af23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion export.go
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ func (e *Export) PrintHistory() {

debug(" - ", order[i].LayerConfig.Id[0:12],
humanDuration(time.Now().UTC().Sub(order[i].LayerConfig.Created.UTC())),
cmd, units.HumanSize(size))
cmd, units.HumanSize(float64(size)))
}
}

Expand Down

0 comments on commit 079af23

Please sign in to comment.