Skip to content

Commit

Permalink
Merge pull request #7213 from libdavid/development
Browse files Browse the repository at this point in the history
Fixing a wrong argument in "CreateEvent" call
  • Loading branch information
dorodnic committed Aug 31, 2020
2 parents e77bd2f + e87364e commit d421050
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/win/win-helpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ namespace librealsense
}

manual_reset_event::manual_reset_event()
:event_base(CreateEvent(nullptr, FALSE, FALSE, nullptr))
:event_base(CreateEvent(nullptr, TRUE, FALSE, nullptr))
{}

auto_reset_event::auto_reset_event()
Expand Down

0 comments on commit d421050

Please sign in to comment.