Fix missing c_str() in RTSP warning message.
This commit is contained in:
parent
76cf297829
commit
9f5f90adcf
1 changed files with 1 additions and 1 deletions
|
@ -279,7 +279,7 @@ namespace Mist {
|
|||
}else if(myMeta.tracks[trId].codec == "MP3"){
|
||||
tracks[trId].rtpPacket = RTP::Packet(14, 1, 0, SSrc);
|
||||
}else{
|
||||
WARN_MSG("Unsupported codec for RTSP on track %u (%s): %s", trId, myMeta.tracks[trId].codec.c_str(), HTTP_R.url);
|
||||
WARN_MSG("Unsupported codec for RTSP on track %u (%s): %s", trId, myMeta.tracks[trId].codec.c_str(), HTTP_R.url.c_str());
|
||||
}
|
||||
|
||||
//read client ports
|
||||
|
|
Loading…
Add table
Reference in a new issue