Skip to content

Commit

Permalink
Merge pull request #271 from stoffu/aeon-win_narrowing_err
Browse files Browse the repository at this point in the history
Windows build: fix narrowing error for WaitForSingleObject monero/monero-project#8349
  • Loading branch information
aeonix authored May 24, 2022
2 parents 033e35e + c3509ad commit 4d30796
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/epee/include/console_handler.h
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ namespace epee
#else
while (m_run.load(std::memory_order_relaxed))
{
int retval = ::WaitForSingleObject(::GetStdHandle(STD_INPUT_HANDLE), 100);
DWORD retval = ::WaitForSingleObject(::GetStdHandle(STD_INPUT_HANDLE), 100);
switch (retval)
{
case WAIT_FAILED:
Expand Down

0 comments on commit 4d30796

Please sign in to comment.