From: Mike Stump Date: Tue, 21 Jul 2009 18:54:29 +0000 (+0000) Subject: Prep for new warning. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dff6ba0025356dfb4f82a48afd89bcdd631566ef;p=clang Prep for new warning. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76613 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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++; }