| Index: remoting/protocol/jingle_session.cc
|
| diff --git a/remoting/protocol/jingle_session.cc b/remoting/protocol/jingle_session.cc
|
| index b56b8a5bf514639d61d798e37b295d1454322b39..72043a978153391b58e7a92d44031e88d99b3acb 100644
|
| --- a/remoting/protocol/jingle_session.cc
|
| +++ b/remoting/protocol/jingle_session.cc
|
| @@ -85,7 +85,7 @@ int GetSequentialId(const std::string& id) {
|
| }
|
|
|
| int result = kInvalid;
|
| - if (!base::StringToInt(tokens[1].c_str(), &result)) {
|
| + if (!base::StringToInt(tokens[1], &result)) {
|
| return kInvalid;
|
| }
|
| return result;
|
|
|