diff options
author | Denys Vlasenko | 2013-07-30 11:52:58 +0200 |
---|---|---|
committer | Denys Vlasenko | 2013-07-30 11:52:58 +0200 |
commit | 982e87f2fb45bf8a951774b3c6dab7afb0dc89f8 (patch) | |
tree | f3c90eaa6dba03d209b9f05c799c3ded447cad22 /networking/wget.c | |
parent | bfa6ed1bf43ea607e33a6e89a0ef03f84a5b5d38 (diff) | |
download | busybox-982e87f2fb45bf8a951774b3c6dab7afb0dc89f8.zip busybox-982e87f2fb45bf8a951774b3c6dab7afb0dc89f8.tar.gz |
Whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/wget.c')
-rw-r--r-- | networking/wget.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/networking/wget.c b/networking/wget.c index ce2f514..5dac2b5 100644 --- a/networking/wget.c +++ b/networking/wget.c @@ -62,14 +62,14 @@ struct globals { const char *curfile; /* Name of current file being transferred */ bb_progress_t pmt; #endif - char *dir_prefix; + char *dir_prefix; #if ENABLE_FEATURE_WGET_LONG_OPTIONS - char *post_data; - char *extra_headers; + char *post_data; + char *extra_headers; #endif - char *fname_out; /* where to direct output (-O) */ - const char *proxy_flag; /* Use proxies if env vars are set */ - const char *user_agent; /* "User-Agent" header field */ + char *fname_out; /* where to direct output (-O) */ + const char *proxy_flag; /* Use proxies if env vars are set */ + const char *user_agent; /* "User-Agent" header field */ #if ENABLE_FEATURE_WGET_TIMEOUT unsigned timeout_seconds; #endif @@ -86,7 +86,7 @@ struct globals { } FIX_ALIASING; #define G (*ptr_to_globals) #define INIT_G() do { \ - SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ + SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ IF_FEATURE_WGET_TIMEOUT(G.timeout_seconds = 900;) \ } while (0) |