Commit fc0d6c8 1 parent 5fa5008 commit fc0d6c8 Copy full SHA for fc0d6c8
File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -256,7 +256,7 @@ size_t UnpackScanner::collectSecondaryTargets(IN std::set<DWORD> &_primaryTarget
256
256
for (itr = _primaryTargets.begin (); itr != _primaryTargets.end (); itr++) {
257
257
DWORD pid = *itr;
258
258
#ifdef _DEBUG
259
- std::cout << " Searching children of: " << pid << " [" << get_process_name_str (pid) << " ]\n " ;
259
+ std::wcout << " Searching children of: " << pid << " [" << get_process_module_path (pid) << " ]\n " ;
260
260
#endif
261
261
std::map<DWORD, std::set<DWORD> >::iterator child_itr = parentToChildrenMap.find (pid);
262
262
if (child_itr == parentToChildrenMap.end ()) {
@@ -273,7 +273,7 @@ size_t UnpackScanner::collectSecondaryTargets(IN std::set<DWORD> &_primaryTarget
273
273
std::set<DWORD>::iterator itr;
274
274
for (itr = childrenList.begin (); itr != childrenList.end (); itr++) {
275
275
DWORD child_pid = *itr;
276
- std::cout << " Child: " << child_pid << " [" << get_process_name_str (child_pid) << " ]\n " ;
276
+ std::wcout << " Child: " << child_pid << " [" << get_process_module_path (child_pid) << " ]\n " ;
277
277
}
278
278
#endif
279
279
}
You can’t perform that action at this time.
0 commit comments