summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2010-09-06 09:23:29 +0000
committerBill Wendling <isanbard@gmail.com>2010-09-06 09:23:29 +0000
commitd52dfbb61c754b1275e02da20622ced2cf484058 (patch)
treeeb8d62700a4f4f0d57cff6b7c3c0b0ac3bdf24a0
parent627c0f59d20cf9c4e563e2dbec578f255e44bdb8 (diff)
Revert part of previous commit. The change for this isn't in this branch.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_28@113153 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Sema/warn-write-strings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Sema/warn-write-strings.c b/test/Sema/warn-write-strings.c
index dd0bb8a6d8..c936a1267b 100644
--- a/test/Sema/warn-write-strings.c
+++ b/test/Sema/warn-write-strings.c
@@ -1,7 +1,7 @@
// RUN: %clang_cc1 -verify -fsyntax-only -Wwrite-strings %s
// PR4804
-char* x = "foo"; // expected-warning {{initializing 'char *' with an expression of type 'const char [4]' discards qualifiers}}
+char* x = "foo"; // expected-warning {{initializing 'char *' with an expression of type 'char const [4]' discards qualifiers}}
// PR7192
#include <stddef.h>