summaryrefslogtreecommitdiff
path: root/lib/ftp.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2017-09-12 09:29:01 +0200
committerDaniel Stenberg <daniel@haxx.se>2017-09-12 13:54:54 +0200
commit87501e57f1c166cb250111af54e0470ab8b2099c (patch)
tree5b9f92270e2d31938360675a4753ca0989bcb74a /lib/ftp.c
parent59813726d1638880494e3675ae8230b6bdd21ee5 (diff)
downloadcurl-87501e57f1c166cb250111af54e0470ab8b2099c.tar.gz
code style: remove wrong uses of multiple spaces
Closes #1878
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 1452d47c4..4860509f3 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -1469,7 +1469,7 @@ static CURLcode ftp_state_list(struct connectdata *conn)
return CURLE_OUT_OF_MEMORY;
/* Check if path does not end with /, as then we cut off the file part */
- if(lstArg[strlen(lstArg) - 1] != '/') {
+ if(lstArg[strlen(lstArg) - 1] != '/') {
/* chop off the file part if format is dir/dir/file */
slashPos = strrchr(lstArg, '/');