Fix type conversion compile error (issue #1397).

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1860 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt 2014-10-09 16:09:07 +00:00
parent 77aa0be191
commit 02c3655ddb
1 changed files with 3 additions and 3 deletions

View File

@ -1276,9 +1276,9 @@ std::string GetMultiNavURL(const std::string& origin, int nav) {
// Extract the nav number from the URL.
int GetNavFromMultiNavURL(const std::string& url) {
const int start = url.find("/nav");
const int end = url.find(".html", start);
EXPECT_TRUE(start < end && start > 0);
const size_t start = url.find("/nav");
const size_t end = url.find(".html", start);
EXPECT_TRUE(start < end && start > 0U);
const std::string& nav = url.substr(start + 4, end - start - 4);
return atoi(nav.c_str());
}