1
0
mirror of https://github.com/autc04/Retro68.git synced 2025-02-19 09:31:37 +00:00

MakePEF: clarify debug output

This commit is contained in:
Wolfgang Thaller 2015-08-31 16:44:28 +02:00
parent 327f1573fd
commit de5ea08375

@ -237,7 +237,7 @@ void mkpef(std::istream& in, std::ostream& out, std::string mainSymbol = "__star
{ {
assert((sym.l_smtype & 3) == XTY_ER); assert((sym.l_smtype & 3) == XTY_ER);
if(verboseFlag) if(verboseFlag)
std::cerr << "from file: " << sym.l_ifile << std::endl; std::cerr << "... from file: " << sym.l_ifile << std::endl;
importLibs[sym.l_ifile].imports.push_back(name); importLibs[sym.l_ifile].imports.push_back(name);
importSources[name] = totalImportedSyms; importSources[name] = totalImportedSyms;
importedSymbolSet.insert(name); importedSymbolSet.insert(name);