aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-07-21 18:45:53 +0000
committerMike Stump <mrs@apple.com>2009-07-21 18:45:53 +0000
commit959922647e5061fc20f983d0e85e3f7fb8421457 (patch)
tree90247688ce747d73c6932cee2ea5278bf8cfb3d9
parente448611736b0bcf76c0bdb5d8b1083eb75d41779 (diff)
Prep for new warning.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76607 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Analysis/casts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/casts.c b/test/Analysis/casts.c
index fb35f2c53b..cd57a63bc2 100644
--- a/test/Analysis/casts.c
+++ b/test/Analysis/casts.c
@@ -21,7 +21,7 @@ struct s {
struct s *value;
};
-int f1(struct s **pval) {
+void f1(struct s **pval) {
int *tbool = ((void*)0);
struct s *t = *pval;
pval = &(t->value);