diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-08-25 22:42:02 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-08-26 23:20:27 +0200 |
commit | 0fd2bf372659da62b2705d0f0b558e33a9ea01c1 (patch) | |
tree | cdaccc4231e66e26d2e7cd15c88f46e92fabb023 | |
parent | 407e08baad45b060e3fa1387190a8b12aca9ab60 (diff) |
Curl_read_plain: indent code
-rw-r--r-- | lib/sendf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sendf.c b/lib/sendf.c index dd031133c..37a06ef53 100644 --- a/lib/sendf.c +++ b/lib/sendf.c @@ -527,10 +527,10 @@ CURLcode Curl_read_plain(curl_socket_t sockfd, * Returns a regular CURLcode value. */ CURLcode Curl_read(struct connectdata *conn, /* connection data */ - curl_socket_t sockfd, /* read from this socket */ - char *buf, /* store read data here */ - size_t sizerequested, /* max amount to read */ - ssize_t *n) /* amount bytes read */ + curl_socket_t sockfd, /* read from this socket */ + char *buf, /* store read data here */ + size_t sizerequested, /* max amount to read */ + ssize_t *n) /* amount bytes read */ { CURLcode curlcode = CURLE_RECV_ERROR; ssize_t nread = 0; |