diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-01-07 16:13:14 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-01-07 16:13:14 +0000 |
commit | 6b404431aa7adea24120894d59daeebc5cbe9727 (patch) | |
tree | f3ccda749daf6fe9f80f4ee99fbb5d1b0ed4cbb7 /networking/ping.c | |
parent | 4e9ca75281a25dcdbb3e2d2fa79108b02afa43db (diff) | |
download | busybox-w32-6b404431aa7adea24120894d59daeebc5cbe9727.tar.gz busybox-w32-6b404431aa7adea24120894d59daeebc5cbe9727.tar.bz2 busybox-w32-6b404431aa7adea24120894d59daeebc5cbe9727.zip |
ps: fix build breakage from vda's recent commit
*: whitespace fixes
Diffstat (limited to 'networking/ping.c')
-rw-r--r-- | networking/ping.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/ping.c b/networking/ping.c index 0de1b33f7..0b33abf9a 100644 --- a/networking/ping.c +++ b/networking/ping.c | |||
@@ -277,8 +277,8 @@ struct globals { | |||
277 | #define rcvd_tbl (G.rcvd_tbl ) | 277 | #define rcvd_tbl (G.rcvd_tbl ) |
278 | void BUG_ping_globals_too_big(void); | 278 | void BUG_ping_globals_too_big(void); |
279 | #define INIT_G() do { \ | 279 | #define INIT_G() do { \ |
280 | if (sizeof(G) > COMMON_BUFSIZE) \ | 280 | if (sizeof(G) > COMMON_BUFSIZE) \ |
281 | BUG_ping_globals_too_big(); \ | 281 | BUG_ping_globals_too_big(); \ |
282 | pingsock = -1; \ | 282 | pingsock = -1; \ |
283 | tmin = UINT_MAX; \ | 283 | tmin = UINT_MAX; \ |
284 | } while (0) | 284 | } while (0) |