diff options
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 { #define cmax (G.cmax ) #define env_cur (G.env_cur ) #define env_var (G.env_var ) -#define INIT_G() \ - do { \ - cmax = 30; \ - env_cur = &env_var[0]; \ - } while (0) +#define INIT_G() do { \ + cmax = 30; \ + env_cur = &env_var[0]; \ +} while (0) /* We have to be careful about leaking memory in repeated setenv's */ |