Skip to content

Commit

Permalink
fix(plc4go/spi): fix speedfactor output of pcap transport
Browse files Browse the repository at this point in the history
  • Loading branch information
sruehl committed Mar 22, 2023
1 parent 53aa21b commit 7efe9c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plc4go/spi/transports/pcap/Transport.go
Expand Up @@ -200,5 +200,5 @@ func (m *TransportInstance) GetReader() *bufio.Reader {
}

func (m *TransportInstance) String() string {
return fmt.Sprintf("pcap:%s(%s)x%d", m.transportFile, m.portRange, m.speedFactor)
return fmt.Sprintf("pcap:%s(%s)x%f", m.transportFile, m.portRange, m.speedFactor)
}

0 comments on commit 7efe9c9

Please sign in to comment.