diff options
author | Denis Vlasenko | 2008-06-25 09:53:17 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-06-25 09:53:17 +0000 |
commit | 7049ff8696c3c2a1be0f9901d7e2473568b8f918 (patch) | |
tree | c952ee767508bb76c25d6269a298aa16cad99b82 /networking/arping.c | |
parent | f26e3d2e41cc7d2fabcf5c2e777306c36a8d5868 (diff) | |
download | busybox-7049ff8696c3c2a1be0f9901d7e2473568b8f918.zip busybox-7049ff8696c3c2a1be0f9901d7e2473568b8f918.tar.gz |
whitespace fixes. no code changes
Diffstat (limited to 'networking/arping.c')
-rw-r--r-- | networking/arping.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/networking/arping.c b/networking/arping.c index 2db2ff4..0a444f1 100644 --- a/networking/arping.c +++ b/networking/arping.c @@ -61,10 +61,9 @@ struct globals { #define received (G.received ) #define brd_recv (G.brd_recv ) #define req_recv (G.req_recv ) -#define INIT_G() \ - do { \ - count = -1; \ - } while (0) +#define INIT_G() do { \ + count = -1; \ +} while (0) // If GNUisms are not available... //static void *mempcpy(void *_dst, const void *_src, int n) |