mirror of https://bitbucket.org/ausocean/av.git
protocol/rtcp: fix format string
This commit is contained in:
parent
5f4bcb61e0
commit
986c010d3b
|
@ -141,7 +141,7 @@ func (dl *dummyLogger) log(lvl int8, msg string, args ...interface{}) {
|
||||||
dl.Log(msg + "\n")
|
dl.Log(msg + "\n")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
dl.Logf(msg+"\n", args)
|
dl.Logf(msg+"%v\n", args)
|
||||||
}
|
}
|
||||||
|
|
||||||
// TestReceiveAndSend tests basic RTCP client behaviour with a basic RTCP server.
|
// TestReceiveAndSend tests basic RTCP client behaviour with a basic RTCP server.
|
||||||
|
|
Loading…
Reference in New Issue