- cleanup clang warning

This commit is contained in:
SoftCoder 2013-12-16 19:25:07 -08:00
parent b5243763a2
commit ca12b7912a
1 changed files with 1 additions and 1 deletions

View File

@ -166,6 +166,6 @@ char *ftpStrcpy(char *dest, const char *src)
char *d = dest;
const char *s = src;
while (*d++ = *s++);
while ((*d++ = *s++));
return dest;
}