From: Sylvestre Ledru Date: Fri, 12 Jun 2015 15:50:27 +0000 (+0000) Subject: scan-build: Remove useless whitespace in File path X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4181de4642a087f9b5aef973f32c8f120c5fbe59;p=clang 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 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@239609 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/scan-build/scan-build b/tools/scan-build/scan-build index d52d8f5f65..ac8e22e8cc 100755 --- a/tools/scan-build/scan-build +++ b/tools/scan-build/scan-build @@ -766,7 +766,7 @@ ENDTEXT my $x = shift @fname; print OUT $x; if ($#fname >= 0) { - print OUT " /"; + print OUT "/"; } } }