Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rfortier committed Oct 26, 2024
1 parent 666d7bb commit 6202d30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/client/CrashHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ LONG WINAPI VectoredExceptionHandler(PEXCEPTION_POINTERS pExceptionInfo)
auto retval = EXCEPTION_CONTINUE_SEARCH;

// Serialize
static std::mutex singleThreaded;;
static std::mutex singleThreaded;
const std::lock_guard lock{singleThreaded};

// Check for severe, not continuable and not software-originated exception
Expand Down

0 comments on commit 6202d30

Please sign in to comment.