mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Windows: Fix 64-bit compile errors (issue #394).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1361 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -275,7 +275,7 @@ class NetNotifyRendererTest : public ClientApp::RenderDelegate {
|
||||
NetNotifyTestType test_type = NNTT_NONE;
|
||||
|
||||
// Extract the test type.
|
||||
int pos = url.find("t=");
|
||||
size_t pos = url.find("t=");
|
||||
int intval = 0;
|
||||
if (pos > 0 && base::StringToInt(url.substr(pos + 2, 1), &intval))
|
||||
test_type = static_cast<NetNotifyTestType>(intval);
|
||||
|
Reference in New Issue
Block a user