Skip to content

Commit f8a5ce3

Browse files
committedJun 12, 2015
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
1 parent 0024909 commit f8a5ce3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎clang/tools/scan-build/scan-build

+1-1
Original file line numberDiff line numberDiff line change
@@ -766,7 +766,7 @@ ENDTEXT
766766
my $x = shift @fname;
767767
print OUT $x;
768768
if ($#fname >= 0) {
769-
print OUT "<span class=\"W\"> </span>/";
769+
print OUT "/";
770770
}
771771
}
772772
}

0 commit comments

Comments
 (0)