diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-25 09:53:17 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-25 09:53:17 +0000 |
commit | 7049ff8696c3c2a1be0f9901d7e2473568b8f918 (patch) | |
tree | c952ee767508bb76c25d6269a298aa16cad99b82 /networking/tcpudp.c | |
parent | f26e3d2e41cc7d2fabcf5c2e777306c36a8d5868 (diff) | |
download | busybox-w32-7049ff8696c3c2a1be0f9901d7e2473568b8f918.tar.gz busybox-w32-7049ff8696c3c2a1be0f9901d7e2473568b8f918.tar.bz2 busybox-w32-7049ff8696c3c2a1be0f9901d7e2473568b8f918.zip |
whitespace fixes. no code changes
Diffstat (limited to 'networking/tcpudp.c')
-rw-r--r-- | networking/tcpudp.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/networking/tcpudp.c b/networking/tcpudp.c index 07a87b8ed..561d1324c 100644 --- a/networking/tcpudp.c +++ b/networking/tcpudp.c | |||
@@ -59,11 +59,10 @@ struct globals { | |||
59 | #define cmax (G.cmax ) | 59 | #define cmax (G.cmax ) |
60 | #define env_cur (G.env_cur ) | 60 | #define env_cur (G.env_cur ) |
61 | #define env_var (G.env_var ) | 61 | #define env_var (G.env_var ) |
62 | #define INIT_G() \ | 62 | #define INIT_G() do { \ |
63 | do { \ | 63 | cmax = 30; \ |
64 | cmax = 30; \ | 64 | env_cur = &env_var[0]; \ |
65 | env_cur = &env_var[0]; \ | 65 | } while (0) |
66 | } while (0) | ||
67 | 66 | ||
68 | 67 | ||
69 | /* We have to be careful about leaking memory in repeated setenv's */ | 68 | /* We have to be careful about leaking memory in repeated setenv's */ |