From 24cbfc370b2b3ef026ebaf94f3fee08a730724e2 Mon Sep 17 00:00:00 2001 From: Mike Stump Date: Wed, 22 Jul 2009 22:55:09 +0000 Subject: [PATCH] Prep for new warning. llvm-svn: 76813 --- clang/test/Analysis/null-deref-ps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/Analysis/null-deref-ps.c b/clang/test/Analysis/null-deref-ps.c index f2994f55da6a..52ed8cd5c468 100644 --- a/clang/test/Analysis/null-deref-ps.c +++ b/clang/test/Analysis/null-deref-ps.c @@ -105,7 +105,7 @@ int f6c(int *p, int *q) { : bar3(p, 2, q); // no-warning } -int f6d(int *p) { +void f6d(int *p) { bar(p, 0); // At this point, 'p' cannot be null. if (!p) {