diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-01-29 10:33:34 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-01-29 10:33:34 +0000 |
commit | 8c69afd992d7cc6c2fc7dea59c3c2bd3f3c21f15 (patch) | |
tree | 998a337ecd57b737423a3793365519213f97da72 /networking/wget.c | |
parent | c882f341cec8451ee87af6746abb7208272d5b1a (diff) | |
download | busybox-w32-8c69afd992d7cc6c2fc7dea59c3c2bd3f3c21f15.tar.gz busybox-w32-8c69afd992d7cc6c2fc7dea59c3c2bd3f3c21f15.tar.bz2 busybox-w32-8c69afd992d7cc6c2fc7dea59c3c2bd3f3c21f15.zip |
- be C99 friendly. Anonymous unions are a GNU extension. This change is
size-neutral WRT -std=gnu99 and fixes several compilation errors for strict
C99 mode.
Diffstat (limited to 'networking/wget.c')
-rw-r--r-- | networking/wget.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/wget.c b/networking/wget.c index 1147077e0..6c1c385b7 100644 --- a/networking/wget.c +++ b/networking/wget.c | |||
@@ -535,7 +535,7 @@ int wget_main(int argc, char **argv) | |||
535 | lsa = xhost2sockaddr(server.host, server.port); | 535 | lsa = xhost2sockaddr(server.host, server.port); |
536 | if (!(opt & WGET_OPT_QUIET)) { | 536 | if (!(opt & WGET_OPT_QUIET)) { |
537 | fprintf(stderr, "Connecting to %s (%s)\n", server.host, | 537 | fprintf(stderr, "Connecting to %s (%s)\n", server.host, |
538 | xmalloc_sockaddr2dotted(&lsa->sa)); | 538 | xmalloc_sockaddr2dotted(&lsa->u.sa)); |
539 | /* We leak result of xmalloc_sockaddr2dotted */ | 539 | /* We leak result of xmalloc_sockaddr2dotted */ |
540 | } | 540 | } |
541 | 541 | ||