Skip to content

Commit

Permalink
Merge branch 'master' into pwielders-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
pwielders authored May 23, 2024
2 parents b1869df + ea11cc0 commit 4b5abe0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/core/Sync.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -925,11 +925,11 @@ namespace Core {

if (nResult == ETIMEDOUT) {
// Something went wrong, so assume...
TRACE_L1("Timed out waiting for event <%d>.", nTime);
TRACE_L5("Timed out waiting for event <%d>.", nTime);
nResult = Core::ERROR_TIMEDOUT;
} else if (nResult != 0) {
// Something went wrong, so assume...
TRACE_L1("Waiting on semaphore failed. Error code <%d>", nResult);
TRACE_L5("Waiting on semaphore failed. Error code <%d>", nResult);
nResult = Core::ERROR_GENERAL;
}

Expand Down

0 comments on commit 4b5abe0

Please sign in to comment.