Remove output from filetype()

Not sure how this made it in, but it's causing problems with PRINT_MODE:TEXT (not to mention filling up stdout.log)
develop
Lethosor 2014-12-27 15:05:43 -05:00
parent 10fa55570e
commit 3c0ac70615
1 changed files with 0 additions and 1 deletions

@ -130,7 +130,6 @@ _filetype DFHack::Filesystem::filetype (std::string path)
{
STAT_STRUCT info;
DFHack::Filesystem::stat(path, info);
std::cout << info.st_mode << std::endl;
return mode2type(info.st_mode);
}