diff options
Diffstat (limited to 'procps')
-rw-r--r-- | procps/top.c | 11 |
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 { enum { LINE_BUF_SIZE = COMMON_BUFSIZE - offsetof(struct globals, line_buf) }; #define G (*(struct globals*)&bb_common_bufsiz1) -#define INIT_G() \ - do { \ - struct G_sizecheck { \ - char G_sizecheck[sizeof(G) > COMMON_BUFSIZE ? -1 : 1]; \ - }; \ - } while (0) +#define INIT_G() do { \ + struct G_sizecheck { \ + char G_sizecheck[sizeof(G) > COMMON_BUFSIZE ? -1 : 1]; \ + }; \ +} while (0) #define top (G.top ) #define ntop (G.ntop ) #define sort_field (G.sort_field ) |