diff options
author | Denys Vlasenko | 2011-09-21 01:59:15 +0200 |
---|---|---|
committer | Denys Vlasenko | 2011-09-21 01:59:15 +0200 |
commit | 16714245f9a16ce3725aab079aea7b0d28c6b32f (patch) | |
tree | 41edbcd1c279b2baae2d5e5751639076e0a3bfad /networking/zcip.c | |
parent | 5c6ba6c56f9653488e1d805e727bb06c39ed23fa (diff) | |
download | busybox-16714245f9a16ce3725aab079aea7b0d28c6b32f.zip busybox-16714245f9a16ce3725aab079aea7b0d28c6b32f.tar.gz |
add INIT_G()'s. No code changes.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/zcip.c')
-rw-r--r-- | networking/zcip.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/networking/zcip.c b/networking/zcip.c index 8a35eca..7314ff8 100644 --- a/networking/zcip.c +++ b/networking/zcip.c @@ -91,6 +91,7 @@ struct globals { #define G (*(struct globals*)&bb_common_bufsiz1) #define saddr (G.saddr ) #define eth_addr (G.eth_addr) +#define INIT_G() do { } while (0) /** @@ -223,6 +224,7 @@ int zcip_main(int argc UNUSED_PARAM, char **argv) #define verbose (L.verbose ) memset(&L, 0, sizeof(L)); + INIT_G(); #define FOREGROUND (opts & 1) #define QUIT (opts & 2) |