Skip to content

Commit 53254bf

Browse files
committed
Fixed compiler warning for sign mismatch in CookieManager.cpp
1 parent 7587d40 commit 53254bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/iedriver/CookieManager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ LRESULT CALLBACK CookieWndProc(int nCode, WPARAM wParam, LPARAM lParam) {
499499
// Mimic the format of the old persistent cookie files for ease of
500500
// transmission back to the driver and parsing.
501501
std::wstring all_cookies = L"";
502-
for (int cookie_index = 0; cookie_index < cookie_count; ++cookie_index) {
502+
for (DWORD cookie_index = 0; cookie_index < cookie_count; ++cookie_index) {
503503
if (all_cookies.size() > 0) {
504504
all_cookies.append(L"\n*\n");
505505
}

0 commit comments

Comments
 (0)