summaryrefslogtreecommitdiff
path: root/tools/scan-build
diff options
context:
space:
mode:
authorSylvestre Ledru <sylvestre@debian.org>2015-06-12 15:50:27 +0000
committerSylvestre Ledru <sylvestre@debian.org>2015-06-12 15:50:27 +0000
commit4181de4642a087f9b5aef973f32c8f120c5fbe59 (patch)
treee151e76eb63e9248d3326525319028cb77d0b4b2 /tools/scan-build
parent9935bd17617e26c8df84c675a5222d42b05e4565 (diff)
downloadclang-4181de4642a087f9b5aef973f32c8f120c5fbe59.tar.gz
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
Diffstat (limited to 'tools/scan-build')
-rwxr-xr-xtools/scan-build/scan-build2
1 files changed, 1 insertions, 1 deletions
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 "<span class=\"W\"> </span>/";
+ print OUT "/";
}
}
}