From dff6ba0025356dfb4f82a48afd89bcdd631566ef Mon Sep 17 00:00:00 2001 From: Mike Stump Date: Tue, 21 Jul 2009 18:54:29 +0000 Subject: [PATCH] Prep for new warning. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76613 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Analysis/exercise-ps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Analysis/exercise-ps.c b/test/Analysis/exercise-ps.c index dc60d3ccec..75b3de21a7 100644 --- a/test/Analysis/exercise-ps.c +++ b/test/Analysis/exercise-ps.c @@ -6,7 +6,7 @@ // (i.e., no assertions or crashes). -static const char * f1(const char *x, char *y) { +static void f1(const char *x, char *y) { while (*x != 0) { *y++ = *x++; } -- 2.50.1