Skip to content

Commit

Permalink
Fixed windows handle missnameing
Browse files Browse the repository at this point in the history
  • Loading branch information
grodansparadis committed Jan 9, 2025
1 parent e8421fe commit 8289cec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vscp/common/vscphelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ vscp_sem_wait(HANDLE *phHandle, uint32_t waitms)
{
int rv;

DWORD dwrv = WaitForSingleObject(*hHandle, waitms);
DWORD dwrv = WaitForSingleObject(*phHandle, waitms);
if (WAIT_OBJECT_0 == dwrv) {
rv= 0;
}
Expand Down

0 comments on commit 8289cec

Please sign in to comment.