Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
kjk committed May 29, 2024
1 parent 464a5b9 commit 4c47da9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/WinUtil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ TempStr GetLastErrorStrTemp(DWORD err) {
void LogLastError(DWORD err) {
TempStr msg = GetLastErrorStrTemp(err);
if (msg == nullptr) {
msg = (TmpStr)"";
msg = (TempStr)"";
}
logf("LogLastError: 0x%x '%s'\n", (int)err, msg);
}
Expand Down

0 comments on commit 4c47da9

Please sign in to comment.