diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-04-22 23:01:30 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-04-27 09:09:35 +0200 |
commit | 889d1e973fb718a77c5000141d724ce03863af23 (patch) | |
tree | 5ad6b1d0238fbda0f2dd113ae2b65f35d2374db5 /lib/file.c | |
parent | 1b758b01c170633e4514483c3605eaad9645973e (diff) | |
download | curl-889d1e973fb718a77c5000141d724ce03863af23.tar.gz |
whitespace cleanup: no space first in conditionals
"if(a)" is our style, not "if( a )"
Diffstat (limited to 'lib/file.c')
-rw-r--r-- | lib/file.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/file.c b/lib/file.c index 1fee92bb2..a3d80fbd7 100644 --- a/lib/file.c +++ b/lib/file.c @@ -377,7 +377,7 @@ static CURLcode file_upload(struct connectdata *conn) /*skip bytes before resume point*/ if(data->state.resume_from) { - if( (curl_off_t)nread <= data->state.resume_from ) { + if((curl_off_t)nread <= data->state.resume_from ) { data->state.resume_from -= nread; nread = 0; buf2 = buf; @@ -456,7 +456,7 @@ static CURLcode file_do(struct connectdata *conn, bool *done) fd = conn->data->state.proto.file->fd; /* VMS: This only works reliable for STREAMLF files */ - if( -1 != fstat(fd, &statbuf)) { + if(-1 != fstat(fd, &statbuf)) { /* we could stat it, then read out the size */ expected_size = statbuf.st_size; /* and store the modification time */ @@ -562,7 +562,7 @@ static CURLcode file_do(struct connectdata *conn, bool *done) bytestoread = (expected_size < BUFSIZE-1)?(size_t)expected_size:BUFSIZE-1; nread = read(fd, buf, bytestoread); - if( nread > 0) + if(nread > 0) buf[nread] = 0; if(nread <= 0 || expected_size == 0) |