Skip to content

Commit

Permalink
Suppressing compiler warning on 64-bit for IE driver
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevans committed Aug 11, 2015
1 parent 2ea95d2 commit 89dfa22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/iedriver/InputManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ bool InputManager::WaitForInputEventProcessing(int input_count) {

bool InputManager::SetFocusToBrowser(BrowserHandle browser_wrapper) {
LOG(TRACE) << "Entering InputManager::SetFocusToBrowser";
DWORD lock_timeout = 0;
UINT_PTR lock_timeout = 0;
DWORD process_id = 0;
DWORD thread_id = ::GetWindowThreadProcessId(browser_wrapper->GetContentWindowHandle(), &process_id);
DWORD current_thread_id = ::GetCurrentThreadId();
Expand Down

0 comments on commit 89dfa22

Please sign in to comment.