diff options
author | mbelshe@chromium.org <mbelshe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-08 18:20:44 +0000 |
---|---|---|
committer | mbelshe@chromium.org <mbelshe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-08 18:20:44 +0000 |
commit | b3f8993357927deaf669cbb746155dab4320513b (patch) | |
tree | 5b9a5ee0f3d36b394c7e69c7357429ecb7b89730 /net/spdy | |
parent | 299de2ee80e9b46638f89b98aa9696a06d9f94b8 (diff) | |
download | chromium_src-b3f8993357927deaf669cbb746155dab4320513b.zip chromium_src-b3f8993357927deaf669cbb746155dab4320513b.tar.gz chromium_src-b3f8993357927deaf669cbb746155dab4320513b.tar.bz2 |
Linux build fix.
BUG=none
TEST=none
TBR=willchan
Review URL: http://codereview.chromium.org/5671001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68609 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/spdy')
-rw-r--r-- | net/spdy/spdy_network_transaction_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/spdy/spdy_network_transaction_unittest.cc b/net/spdy/spdy_network_transaction_unittest.cc index fc0cbe8..586f7dc 100644 --- a/net/spdy/spdy_network_transaction_unittest.cc +++ b/net/spdy/spdy_network_transaction_unittest.cc @@ -5332,7 +5332,7 @@ TEST_P(SpdyNetworkTransactionTest, ServerPushCrossOriginCorrectness) { 'p', 'u', 's', 'h', 'e', 'd' // "pushed" }; - for (int index = 0; index < arraysize(kTestCases); index += 2) { + for (size_t index = 0; index < arraysize(kTestCases); index += 2) { const char* url_to_fetch = kTestCases[index]; const char* url_to_push = kTestCases[index + 1]; |