]> granicus.if.org Git - clang/commitdiff
Fix bad comment from r207573.
authorHans Wennborg <hans@hanshq.net>
Fri, 2 May 2014 18:12:30 +0000 (18:12 +0000)
committerHans Wennborg <hans@hanshq.net>
Fri, 2 May 2014 18:12:30 +0000 (18:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@207854 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/ScanfFormatString.cpp

index 18505e263bef8cd3393ef8d3e35961fc9c48c2f6..32d35cde2ff7946db28cda771da5b8f240acbfbf 100644 (file)
@@ -50,7 +50,7 @@ static bool ParseScanList(FormatStringHandler &H,
     }
   }
 
-  // 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) {