Fix a compile error on Android on sctpdataengine.cc.

TEST=try bots
BUG=
R=jiayl@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/6719004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@5350 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
wu@webrtc.org 2014-01-07 19:32:40 +00:00
parent d335094852
commit e00265ed49

View File

@ -48,7 +48,7 @@ typedef cricket::SctpDataMediaChannel::StreamSet StreamSet;
std::string ListStreams(const StreamSet& s) {
std::stringstream result;
bool first = true;
for (StreamSet::iterator it = s.begin(); it != s.end(); ++it) {
for (StreamSet::const_iterator it = s.begin(); it != s.end(); ++it) {
if (!first) {
result << ", " << *it;
} else {