mirror of https://bitbucket.org/ausocean/av.git
protocol/rtcp/client.go: no newline at the end of error string in parse()
This commit is contained in:
parent
f5d38b1bfc
commit
a06083ecb7
|
@ -231,7 +231,7 @@ func (c *Client) parse(buf []byte) {
|
|||
c.markReceivedTime()
|
||||
t, err := ParseTimestamp(buf)
|
||||
if err != nil {
|
||||
c.err <- fmt.Errorf("could not get timestamp from sender report, failed with error: %v\n", err)
|
||||
c.err <- fmt.Errorf("could not get timestamp from sender report, failed with error: %v", err)
|
||||
}
|
||||
c.setSenderTs(t)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue