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:
parent
063c066802
commit
975c24b24f
2 changed files with 15 additions and 15 deletions
|
@ -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 << '\\';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue