Skip to content

Commit 052e532

Browse files
committed
Fix build on Win
1 parent 3f50b3e commit 052e532

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webdriver/webdriver_route_table.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ bool RouteTable::AddRoute(const std::string& uri_pattern,
130130
return false;
131131
}
132132
bool hasCustomPrefix = false;
133-
for ( uint i = 0; i < url_segments.size(); i++ )
133+
for (size_t i = 0; i < url_segments.size(); ++i)
134134
{
135135
hasCustomPrefix = CheckCustomPrefix(url_segments[i]);
136136
if (hasCustomPrefix)

0 commit comments

Comments
 (0)