aboutsummaryrefslogtreecommitdiff
path: root/procps
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-06-25 09:53:17 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-06-25 09:53:17 +0000
commit7049ff8696c3c2a1be0f9901d7e2473568b8f918 (patch)
treec952ee767508bb76c25d6269a298aa16cad99b82 /procps
parentf26e3d2e41cc7d2fabcf5c2e777306c36a8d5868 (diff)
downloadbusybox-w32-7049ff8696c3c2a1be0f9901d7e2473568b8f918.tar.gz
busybox-w32-7049ff8696c3c2a1be0f9901d7e2473568b8f918.tar.bz2
busybox-w32-7049ff8696c3c2a1be0f9901d7e2473568b8f918.zip
whitespace fixes. no code changes
Diffstat (limited to 'procps')
-rw-r--r--procps/top.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/procps/top.c b/procps/top.c
index b861deb66..0e1b333a1 100644
--- a/procps/top.c
+++ b/procps/top.c
@@ -89,12 +89,11 @@ struct globals {
89enum { LINE_BUF_SIZE = COMMON_BUFSIZE - offsetof(struct globals, line_buf) }; 89enum { LINE_BUF_SIZE = COMMON_BUFSIZE - offsetof(struct globals, line_buf) };
90 90
91#define G (*(struct globals*)&bb_common_bufsiz1) 91#define G (*(struct globals*)&bb_common_bufsiz1)
92#define INIT_G() \ 92#define INIT_G() do { \
93 do { \ 93 struct G_sizecheck { \
94 struct G_sizecheck { \ 94 char G_sizecheck[sizeof(G) > COMMON_BUFSIZE ? -1 : 1]; \
95 char G_sizecheck[sizeof(G) > COMMON_BUFSIZE ? -1 : 1]; \ 95 }; \
96 }; \ 96} while (0)
97 } while (0)
98#define top (G.top ) 97#define top (G.top )
99#define ntop (G.ntop ) 98#define ntop (G.ntop )
100#define sort_field (G.sort_field ) 99#define sort_field (G.sort_field )