diff options
author | Mike Stump <mrs@apple.com> | 2009-07-21 18:54:29 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-07-21 18:54:29 +0000 |
commit | dff6ba0025356dfb4f82a48afd89bcdd631566ef (patch) | |
tree | 62ec01369b3c7d1791717330c147baaf08442dde | |
parent | 431e4d33ffad874ad471385d73a3e1b4238447e9 (diff) |
Prep for new warning.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76613 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Analysis/exercise-ps.c | 2 |
1 files changed, 1 insertions, 1 deletions
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++; } |