diff options
author | Christian Pointner <equinox@spreadspace.org> | 2020-04-13 18:56:15 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2020-04-13 18:56:15 +0200 |
commit | 46d195ccc3db6e47120d3813bf5414176482192d (patch) | |
tree | 6eaa1433cc0b0c4f332ff489a57bfb9b0729dfad /cmd/dolmetschctld/telnet.go | |
parent | add go-modules support and fix midi library API change (diff) | |
parent | statemachine: current vs target vs real (diff) |
Diffstat (limited to 'cmd/dolmetschctld/telnet.go')
-rw-r--r-- | cmd/dolmetschctld/telnet.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/dolmetschctld/telnet.go b/cmd/dolmetschctld/telnet.go index 5618ebe..55c3bf0 100644 --- a/cmd/dolmetschctld/telnet.go +++ b/cmd/dolmetschctld/telnet.go @@ -78,7 +78,7 @@ func telnetCmdState(c *telgo.Client, args []string, sm *StateMachine) bool { } state, ratio, lang := sm.GetState() c.Sayln("current state: %s", state) - c.Sayln("current ratio: %s", ratio) + c.Sayln("current ratio: %f", ratio) c.Sayln("current language: %s", lang) return false } |