1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

RTC: Fix warnings

This commit is contained in:
winlin 2020-07-27 16:52:44 +08:00
parent 063c066802
commit 975c24b24f
2 changed files with 15 additions and 15 deletions

View file

@ -1576,7 +1576,7 @@ string escape(string v)
{
stringstream ss;
for (int i = 0; i < v.length(); i++) {
for (int i = 0; i < (int)v.length(); i++) {
if (v.at(i) == '"') {
ss << '\\';
}