diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-09-12 09:29:01 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-09-12 13:54:54 +0200 |
commit | 87501e57f1c166cb250111af54e0470ab8b2099c (patch) | |
tree | 5b9f92270e2d31938360675a4753ca0989bcb74a /lib/ftp.c | |
parent | 59813726d1638880494e3675ae8230b6bdd21ee5 (diff) |
code style: remove wrong uses of multiple spaces
Closes #1878
Diffstat (limited to 'lib/ftp.c')
-rw-r--r-- | lib/ftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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, '/'); |