Skip to content

Commit

Permalink
Typo in AccessBridgeCalls.c
Browse files Browse the repository at this point in the history
  • Loading branch information
TheShermanTanker authored Jan 23, 2025
1 parent 6f9d1b3 commit 47b168a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ extern "C" {
if (result == 0) {
error = GetLastError();
}
return result == 0 ? TRUE : FALSE;
return result != 0 ? TRUE : FALSE;
}
((void) error); // Temporary useless code to mark error as being flagged by the compiler
return FALSE;
Expand Down

0 comments on commit 47b168a

Please sign in to comment.