Add debug message for GetBinaryType

This commit is contained in:
EnderIce2 2024-09-22 13:10:05 +03:00
parent cac9449457
commit 6f8e486740
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD
2 changed files with 1 additions and 1 deletions

View File

@ -100,6 +100,7 @@ namespace Execute
BinaryType GetBinaryType(std::string Path)
{
FileNode *node = fs->GetByPath(Path.c_str(), nullptr);
debug("Checking binary type of %s (returning %p)", Path.c_str(), node);
assert(node != nullptr);
return GetBinaryType(node);
}

View File

@ -60,7 +60,6 @@ namespace Memory
};
}
#include <memory/smart_heap.hpp>
#include <memory/physical.hpp>
#include <memory/virtual.hpp>
#include <memory/swap_pt.hpp>