From ca12b7912a8e89dbbd6a087569741d742e27a742 Mon Sep 17 00:00:00 2001 From: SoftCoder Date: Mon, 16 Dec 2013 19:25:07 -0800 Subject: [PATCH] - cleanup clang warning --- source/shared_lib/sources/feathery_ftp/ftpLib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/shared_lib/sources/feathery_ftp/ftpLib.c b/source/shared_lib/sources/feathery_ftp/ftpLib.c index 38c4a1cb..47d66d5c 100644 --- a/source/shared_lib/sources/feathery_ftp/ftpLib.c +++ b/source/shared_lib/sources/feathery_ftp/ftpLib.c @@ -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; }