Skip to content

Commit

Permalink
Resolve string concatenation error
Browse files Browse the repository at this point in the history
  • Loading branch information
eschan145 committed Jan 17, 2025
1 parent 4e5c1ff commit 090918e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ void CALLBACK sweep(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime) {
HANDLE snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);

if (snapshot == INVALID_HANDLE_VALUE) {
error("Failed to produce a snapshot with CreateToolHelp32! Error " +
error("Failed to produce a snapshot with CreateToolHelp32! Error "
"code: " + last_error() + "\n");
return;
}
Expand Down

0 comments on commit 090918e

Please sign in to comment.