diff options
| -rw-r--r-- | clang/test/FixIt/format.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/FixIt/format.m b/clang/test/FixIt/format.m index fea8465485d..d07ee363b4a 100644 --- a/clang/test/FixIt/format.m +++ b/clang/test/FixIt/format.m @@ -89,7 +89,7 @@ void test_fixed_enum_correction(NSStringEncoding x) { typedef __SIZE_TYPE__ size_t; enum SomeSize : size_t { IntegerSize = sizeof(int) }; void test_named_fixed_enum_correction(enum SomeSize x) { - NSLog(@"%@", x); // expected-warning{{format specifies type 'id' but the argument has underlying type 'size_t' (aka 'unsigned long')}} + NSLog(@"%@", x); // expected-warning{{format specifies type 'id' but the argument has underlying type 'size_t' (aka}} // CHECK: fix-it:"{{.*}}":{92:11-92:13}:"%zu" } |

