Skip to content

Commit

Permalink
[BUGFIX] Fixed variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
hasherezade committed Sep 2, 2024
1 parent 31a0f01 commit f256c57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scanners/thread_scanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ size_t pesieve::ThreadScanner::analyzeCallStack(IN const std::vector<ULONGLONG>
cDetails.stackFramesCount = call_stack.size();
cDetails.is_ret_in_frame = false;
#ifdef _SHOW_THREAD_INFO
std::cout << "\n" << "Stack frame Size: " << std::dec << stack_frame.size() << "\n===\n";
std::cout << "\n" << "Stack frame Size: " << std::dec << call_stack.size() << "\n===\n";
#endif //_SHOW_THREAD_INFO
for (auto itr = call_stack.rbegin(); itr != call_stack.rend() ;++itr, ++processedCntr) {
const ULONGLONG next_return = *itr;
Expand Down

0 comments on commit f256c57

Please sign in to comment.