summaryrefslogtreecommitdiffstats
path: root/Source/CTest/Curl/ftp.c
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2004-10-11 14:10:53 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2004-10-11 14:10:53 (GMT)
commit47333c91135e8b67674252748a19c9f3992d50b8 (patch)
tree652e7b0bf8f32be1b9007f649ec9c09913a80552 /Source/CTest/Curl/ftp.c
parentbc6ae0649b849b4c7df3977f449d84f6d319f66e (diff)
downloadCMake-47333c91135e8b67674252748a19c9f3992d50b8.zip
CMake-47333c91135e8b67674252748a19c9f3992d50b8.tar.gz
CMake-47333c91135e8b67674252748a19c9f3992d50b8.tar.bz2
COMP: Remove alignment warning
Diffstat (limited to 'Source/CTest/Curl/ftp.c')
-rw-r--r--Source/CTest/Curl/ftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/Curl/ftp.c b/Source/CTest/Curl/ftp.c
index eb26895..567c166 100644
--- a/Source/CTest/Curl/ftp.c
+++ b/Source/CTest/Curl/ftp.c
@@ -2692,7 +2692,7 @@ CURLcode ftp_regular_transfer(struct connectdata *conn)
cur_pos = slash_pos + 1; /* jump to the rest of the string */
if(++ftp->dirdepth >= ftp->diralloc) {
/* enlarge array */
- char *bigger;
+ char **bigger;
ftp->diralloc *= 2; /* double the size each time */
bigger = realloc(ftp->dirs, ftp->diralloc * sizeof(ftp->dirs[0]));
if(!bigger) {