Add a newline to an error message.

llvm-svn: 198016
This commit is contained in:
Rui Ueyama 2013-12-25 13:48:26 +00:00
parent cc66ff6776
commit 208915b5ea
1 changed files with 1 additions and 1 deletions

View File

@ -260,7 +260,7 @@ uint32_t PECOFFLinkingContext::getSectionAttributes(StringRef sectionName,
void PECOFFLinkingContext::addDllExport(ExportDesc &desc) {
if (_dllExportSet.count(desc.name)) {
llvm::errs() << "Export symbol '" << desc.name
<< "' specified more than once.";
<< "' specified more than once.\n";
return;
}
_dllExports.push_back(desc);