summaryrefslogtreecommitdiffstats
path: root/jingle
diff options
context:
space:
mode:
authorfischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-02 21:11:45 +0000
committerfischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-02 21:11:45 +0000
commit6c3e4895bf2e75961402e718ceb72ee35bbbf002 (patch)
treef884a3bcbfaa5755ff202539307f578baa9fd130 /jingle
parenta6775974f1838548f4c0ce28fc818a623added7b (diff)
downloadchromium_src-6c3e4895bf2e75961402e718ceb72ee35bbbf002.zip
chromium_src-6c3e4895bf2e75961402e718ceb72ee35bbbf002.tar.gz
chromium_src-6c3e4895bf2e75961402e718ceb72ee35bbbf002.tar.bz2
Add an innocuous missing "else" to PseudoTcpAdapter::Core::TcpWritePacket()
Review URL: https://chromiumcodereview.appspot.com/18376002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209775 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'jingle')
-rw-r--r--jingle/glue/pseudotcp_adapter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/jingle/glue/pseudotcp_adapter.cc b/jingle/glue/pseudotcp_adapter.cc
index 87c1fb8..afd6c36 100644
--- a/jingle/glue/pseudotcp_adapter.cc
+++ b/jingle/glue/pseudotcp_adapter.cc
@@ -370,7 +370,7 @@ cricket::IPseudoTcpNotify::WriteResult PseudoTcpAdapter::Core::TcpWritePacket(
if (result == net::ERR_IO_PENDING) {
socket_write_pending_ = true;
return IPseudoTcpNotify::WR_SUCCESS;
- } if (result == net::ERR_MSG_TOO_BIG) {
+ } else if (result == net::ERR_MSG_TOO_BIG) {
return IPseudoTcpNotify::WR_TOO_LARGE;
} else if (result < 0) {
return IPseudoTcpNotify::WR_FAIL;