Skip to content
Snippets Groups Projects
Commit 41292c9d authored by Axel Naumann's avatar Axel Naumann
Browse files

Spacing in error messages.

parent f1ed94de
Branches
Tags
Loading
......@@ -310,7 +310,7 @@ namespace cling {
FILE * f;
if (!(f = fopen(file.data(), "w"))) {
llvm::errs() << "cling::MetaProcessor::setFileStream:"
" The file path " << file.data() << "is not valid.\n";
" The file path " << file.data() << " is not valid.\n";
} else {
fclose(f);
}
......@@ -339,7 +339,7 @@ namespace cling {
int backupFD = dup(fd);
if (backupFD < 0) {
llvm::errs() << "MetaProcessor::copyFileDescriptor: Duplicating the file"
" descriptor " << fd << "resulted in an error."
" descriptor " << fd << " resulted in an error."
" Will not be able to unredirect.\n";
}
return backupFD;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment