aboutsummaryrefslogtreecommitdiff
path: root/lib/ftp.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2011-07-04 22:10:32 +0200
committerDaniel Stenberg <daniel@haxx.se>2011-07-04 22:10:32 +0200
commitb680fd180bf31dd29d84f43d91b6ee56e62d452f (patch)
tree9ff675d7149994cd88bab0618e03ef405e8753a7 /lib/ftp.c
parentdc97475dedb96b73e3688b216bac42b3084cadf0 (diff)
code style: space between close paren and open brace
Diffstat (limited to 'lib/ftp.c')
-rw-r--r--lib/ftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ftp.c b/lib/ftp.c
index d758301f5..bfc0a78a1 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -279,7 +279,7 @@ static void freedirs(struct ftp_conn *ftpc)
{
int i;
if(ftpc->dirs) {
- for(i=0; i < ftpc->dirdepth; i++){
+ for(i=0; i < ftpc->dirdepth; i++) {
if(ftpc->dirs[i]) {
free(ftpc->dirs[i]);
ftpc->dirs[i]=NULL;