aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-06-02 14:39:34 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-06-02 14:39:34 +0000
commitde03f172adf1be385e3f7d3aaee125e1231e7aea (patch)
treeee85ef60bef952a0420c9b571b99f54f3361fbff
parent0078944486c5caa86e348168eebc8614c510d84d (diff)
very minor format edit
-rw-r--r--lib/easy.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/easy.c b/lib/easy.c
index 5c3062712..6257b7452 100644
--- a/lib/easy.c
+++ b/lib/easy.c
@@ -333,7 +333,8 @@ CURLcode curl_easy_setopt(CURL *curl, CURLoption tag, ...)
/* This is a function pointer type */
param_func = va_arg(arg, func_T );
ret = Curl_setopt(data, tag, param_func);
- } else {
+ }
+ else {
/* This is a curl_off_t type */
param_offset = va_arg(arg, curl_off_t);
ret = Curl_setopt(data, tag, param_offset);