commit | 802df13e4dbe8c34fed513f216e988c3c3186849 | [log] [tgz] |
---|---|---|
author | Hans Wennborg <hans@hanshq.net> | Fri May 02 18:12:30 2014 +0000 |
committer | Hans Wennborg <hans@hanshq.net> | Fri May 02 18:12:30 2014 +0000 |
tree | f0d115e971411f8ae2aebf98293a324bdbb5c00c | |
parent | f76388dd7e387f3621c2e4de4816f7351ef36118 [diff] [blame] |
Fix bad comment from r207573. llvm-svn: 207854
diff --git a/clang/lib/Analysis/ScanfFormatString.cpp b/clang/lib/Analysis/ScanfFormatString.cpp index 18505e2..32d35cd 100644 --- a/clang/lib/Analysis/ScanfFormatString.cpp +++ b/clang/lib/Analysis/ScanfFormatString.cpp
@@ -50,7 +50,7 @@ } } - // Special case: "]^" are the first characters. + // Special case: "^]" are the first characters. if (I + 1 != E && I[0] == '^' && I[1] == ']') { I += 2; if (I == E) {