From f8a5ce35a4e5141fad6737143b7d60abc01d1cb0 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Fri, 12 Jun 2015 15:50:27 +0000 Subject: [PATCH] scan-build: Remove useless whitespace in File path Patch by Honggyu Kim Summary: This patch removes useless whitespace in File path in index.html Previously, a File directory path is copied and pasted as below: arch /arm /kernel /stacktrace.c It just removes the whitespace between directories and makes the copied string as below: arch/arm/kernel/stacktrace.c The output looks same in html format, but the copied directory path can be pasted as it looks. Reviewers: krememek, zaks.anna, sylvestre.ledru Reviewed By: sylvestre.ledru Subscribers: aemerson, cfe-commits Differential Revision: http://reviews.llvm.org/D10354 llvm-svn: 239609 --- clang/tools/scan-build/scan-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/tools/scan-build/scan-build b/clang/tools/scan-build/scan-build index d52d8f5..ac8e22e 100755 --- a/clang/tools/scan-build/scan-build +++ b/clang/tools/scan-build/scan-build @@ -766,7 +766,7 @@ ENDTEXT my $x = shift @fname; print OUT $x; if ($#fname >= 0) { - print OUT " /"; + print OUT "/"; } } } -- 2.7.4