Skip to content

Commit

Permalink
[BUGFIX] Deleted invalid variable
Browse files Browse the repository at this point in the history
  • Loading branch information
hasherezade committed Jun 8, 2024
1 parent eced188 commit bec3a31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etw_listener.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ struct ProceesStat
{
if (thread) {
#ifdef _DEBUG
std::cout << std::dec << pid << " : Deleting thread: " << procStats[pid].thread->get_id() << std::endl;
std::cout << std::dec << "Deleting thread: " << thread->get_id() << std::endl;
#endif
if (thread->joinable()) {
thread->join();
Expand Down

0 comments on commit bec3a31

Please sign in to comment.