Prep for new warning.

llvm-svn: 76613
This commit is contained in:
Mike Stump 2009-07-21 18:54:29 +00:00
parent 18e32946f8
commit 0aaf1308fc
1 changed files with 1 additions and 1 deletions

View File

@ -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++;
}