diff options
author | Denis Vlasenko | 2008-01-07 16:13:14 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-01-07 16:13:14 +0000 |
commit | 6b404431aa7adea24120894d59daeebc5cbe9727 (patch) | |
tree | f3ccda749daf6fe9f80f4ee99fbb5d1b0ed4cbb7 /networking/ping.c | |
parent | 4e9ca75281a25dcdbb3e2d2fa79108b02afa43db (diff) | |
download | busybox-6b404431aa7adea24120894d59daeebc5cbe9727.zip busybox-6b404431aa7adea24120894d59daeebc5cbe9727.tar.gz |
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 0de1b33..0b33abf 100644 --- a/networking/ping.c +++ b/networking/ping.c @@ -277,8 +277,8 @@ struct globals { #define rcvd_tbl (G.rcvd_tbl ) void BUG_ping_globals_too_big(void); #define INIT_G() do { \ - if (sizeof(G) > COMMON_BUFSIZE) \ - BUG_ping_globals_too_big(); \ + if (sizeof(G) > COMMON_BUFSIZE) \ + BUG_ping_globals_too_big(); \ pingsock = -1; \ tmin = UINT_MAX; \ } while (0) |