cli: fix type in flags.Fixed8FromContext

This commit is contained in:
Evgenii Stratonikov 2020-03-24 17:17:28 +03:00
parent f84008437e
commit 7310666479

View file

@ -71,5 +71,5 @@ func (f Fixed8Flag) Apply(set *flag.FlagSet) {
// Fixed8FromContext returns parsed util.Fixed8 value provided flag name. // Fixed8FromContext returns parsed util.Fixed8 value provided flag name.
func Fixed8FromContext(ctx *cli.Context, name string) util.Fixed8 { func Fixed8FromContext(ctx *cli.Context, name string) util.Fixed8 {
return ctx.Generic(name).(*Fixed8Flag).Value.Fixed8() return ctx.Generic(name).(*Fixed8).Value
} }