| Index: talk/media/base/mediachannel.h
|
| diff --git a/talk/media/base/mediachannel.h b/talk/media/base/mediachannel.h
|
| index c18847465c560a1c000e1982a52cb9a46ec40786..0bcaabd1217dda7e16fb94449cd6f0e0c8206ca9 100644
|
| --- a/talk/media/base/mediachannel.h
|
| +++ b/talk/media/base/mediachannel.h
|
| @@ -951,7 +951,7 @@ struct RtpSendParameters : RtpParameters<Codec> {
|
| ost << "{";
|
| ost << "codecs: " << VectorToString(this->codecs) << ", ";
|
| ost << "extensions: " << VectorToString(this->extensions) << ", ";
|
| - ost << "max_bandiwidth_bps: " << max_bandwidth_bps << ", ";
|
| + ost << "max_bandwidth_bps: " << max_bandwidth_bps << ", ";
|
| ost << "options: " << options.ToString();
|
| ost << "}";
|
| return ost.str();
|
| @@ -1165,7 +1165,7 @@ struct DataSendParameters : RtpSendParameters<DataCodec, DataOptions> {
|
| // Options and extensions aren't used.
|
| ost << "{";
|
| ost << "codecs: " << VectorToString(codecs) << ", ";
|
| - ost << "max_bandiwidth_bps: " << max_bandwidth_bps;
|
| + ost << "max_bandwidth_bps: " << max_bandwidth_bps;
|
| ost << "}";
|
| return ost.str();
|
| }
|
|
|