protocol/rtcp: fix format string

This commit is contained in:
Dan Kortschak 2021-07-23 12:56:49 +09:30 committed by Russell Stanley
parent 5f4bcb61e0
commit 986c010d3b
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ func (dl *dummyLogger) log(lvl int8, msg string, args ...interface{}) {
dl.Log(msg + "\n")
return
}
dl.Logf(msg+"\n", args)
dl.Logf(msg+"%v\n", args)
}
// TestReceiveAndSend tests basic RTCP client behaviour with a basic RTCP server.