diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-07-16 20:49:01 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-07-16 20:49:01 +0000 |
commit | bb09d1e7b2ce1d59e571397e8300d9e18cba8456 (patch) | |
tree | f02343e15eaa76b29147f0627c96b43a1f8e1af7 /test/Sema/format-strings-scanf.c | |
parent | cdf3b83617a3e2471d592795622561506af9109e (diff) |
Remove unicode quotes characters that somehow made it into a recent commit of mine.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108552 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/format-strings-scanf.c')
-rw-r--r-- | test/Sema/format-strings-scanf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Sema/format-strings-scanf.c b/test/Sema/format-strings-scanf.c index f571886877..5341ad5ee9 100644 --- a/test/Sema/format-strings-scanf.c +++ b/test/Sema/format-strings-scanf.c @@ -11,5 +11,5 @@ void test(const char *s, int *i) { scanf(s, i); // expected-warning{{ormat string is not a string literal}} scanf("%0d", i); // expected-warning{{zero field width in scanf format string is unused}} scanf("%00d", i); // expected-warning{{zero field width in scanf format string is unused}} - scanf("%d%[asdfasdfd", i, s); // expected-warning{{no closing ‘]’ for ‘%[’ in scanf format string}} + scanf("%d%[asdfasdfd", i, s); // expected-warning{{no closing ']' for '%[' in scanf format string}} } |