Skip to content

Commit a544366

Browse files
committed
Fixing IEDriverServer x64 compile warning
1 parent 6a19886 commit a544366

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/iedriver/IECommandExecutor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ void IECommandExecutor::DispatchCommand() {
511511
this->is_waiting_ = browser->wait_required();
512512
if (this->is_waiting_) {
513513
if (this->page_load_timeout_ >= 0) {
514-
this->wait_timeout_ = clock() + (this->page_load_timeout_ / 1000 * CLOCKS_PER_SEC);
514+
this->wait_timeout_ = clock() + (static_cast<int>(this->page_load_timeout_) / 1000 * CLOCKS_PER_SEC);
515515
}
516516
::PostMessage(this->m_hWnd, WD_WAIT, NULL, NULL);
517517
}

0 commit comments

Comments
 (0)