diff options
Diffstat (limited to 'procps')
-rw-r--r-- | procps/nmeter.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/procps/nmeter.c b/procps/nmeter.c index b8ba3facb..573052921 100644 --- a/procps/nmeter.c +++ b/procps/nmeter.c | |||
@@ -75,11 +75,11 @@ struct globals { | |||
75 | #define proc_diskstats (G.proc_diskstats ) | 75 | #define proc_diskstats (G.proc_diskstats ) |
76 | #define proc_sys_fs_filenr (G.proc_sys_fs_filenr) | 76 | #define proc_sys_fs_filenr (G.proc_sys_fs_filenr) |
77 | #define INIT_G() do { \ | 77 | #define INIT_G() do { \ |
78 | PTR_TO_GLOBALS = xzalloc(sizeof(G)); \ | 78 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
79 | cur_outbuf = outbuf; \ | 79 | cur_outbuf = outbuf; \ |
80 | final_str = "\n"; \ | 80 | final_str = "\n"; \ |
81 | deltanz = delta = 1000000; \ | 81 | deltanz = delta = 1000000; \ |
82 | } while (0) | 82 | } while (0) |
83 | 83 | ||
84 | // We depend on this being a char[], not char* - we take sizeof() of it | 84 | // We depend on this being a char[], not char* - we take sizeof() of it |
85 | #define outbuf bb_common_bufsiz1 | 85 | #define outbuf bb_common_bufsiz1 |