diff options
Diffstat (limited to 'coreutils/od_bloaty.c')
-rw-r--r-- | coreutils/od_bloaty.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/coreutils/od_bloaty.c b/coreutils/od_bloaty.c index f47f84b54..1e252caf0 100644 --- a/coreutils/od_bloaty.c +++ b/coreutils/od_bloaty.c | |||
@@ -20,6 +20,7 @@ | |||
20 | 20 | ||
21 | 21 | ||
22 | /* #include "libbb.h" - done in od.c */ | 22 | /* #include "libbb.h" - done in od.c */ |
23 | #include "common_bufsiz.h" | ||
23 | #define assert(a) ((void)0) | 24 | #define assert(a) ((void)0) |
24 | 25 | ||
25 | 26 | ||
@@ -214,7 +215,7 @@ struct globals { | |||
214 | #if !ENABLE_LONG_OPTS | 215 | #if !ENABLE_LONG_OPTS |
215 | enum { G_pseudo_offset = 0 }; | 216 | enum { G_pseudo_offset = 0 }; |
216 | #endif | 217 | #endif |
217 | #define G (*(struct globals*)&bb_common_bufsiz1) | 218 | #define G (*(struct globals*)bb_common_bufsiz1) |
218 | #define INIT_G() do { \ | 219 | #define INIT_G() do { \ |
219 | BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \ | 220 | BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \ |
220 | G.bytes_per_block = 32; \ | 221 | G.bytes_per_block = 32; \ |