diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2015-06-12 15:50:27 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2015-06-12 15:50:27 +0000 |
commit | f8a5ce35a4e5141fad6737143b7d60abc01d1cb0 (patch) | |
tree | db729c87260cf4453c89f4c5be1cc568d359461b /clang/tools/scan-build | |
parent | 0024909c68b272a5e8e3406dbe67d7f089ea70ef (diff) | |
download | bcm5719-llvm-f8a5ce35a4e5141fad6737143b7d60abc01d1cb0.tar.gz bcm5719-llvm-f8a5ce35a4e5141fad6737143b7d60abc01d1cb0.zip |
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
Diffstat (limited to 'clang/tools/scan-build')
-rwxr-xr-x | clang/tools/scan-build/scan-build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/tools/scan-build/scan-build b/clang/tools/scan-build/scan-build index d52d8f5f655..ac8e22e8cc7 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 "<span class=\"W\"> </span>/"; + print OUT "/"; } } } |