From 445fa776d2bc9207c33a9b9ab4afb9513f6b81b0 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Fri, 10 Oct 2008 00:17:08 +0000 Subject: [PATCH] Add missing newline. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57333 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/scan-build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/scan-build b/utils/scan-build index 160b00ce8a..d9ecba78c3 100755 --- a/utils/scan-build +++ b/utils/scan-build @@ -93,7 +93,7 @@ my %AvailableAnalyses; # Query clang for analysis options. open(PIPE, "-|", $Clang, "--help") or - DieDiag("Cannot execute '$Clang'"); + DieDiag("Cannot execute '$Clang'\n"); my $FoundAnalysis = 0; @@ -199,7 +199,7 @@ sub GetHTMLRunDir { } if ($TmpMode) { - DieDiag("The directory '/tmp' does not exist or cannot be accessed."); + DieDiag("The directory '/tmp' does not exist or cannot be accessed.\n"); } # $Dir does not exist. It will be automatically created by the -- 2.40.0