diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-05-17 10:10:01 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-05-17 10:10:01 +0200 |
commit | 82dd14a510caf192c90e764f36bf424d647b5376 (patch) | |
tree | 22c0c07c49820118decb2d50186a19c9cc3dce5e /init | |
parent | ef215558fa261d0aeb653ea49efebcf2811d59a3 (diff) | |
download | busybox-w32-82dd14a510caf192c90e764f36bf424d647b5376.tar.gz busybox-w32-82dd14a510caf192c90e764f36bf424d647b5376.tar.bz2 busybox-w32-82dd14a510caf192c90e764f36bf424d647b5376.zip |
ash: use CONFIG_FEATURE_EDITING_MAX_LEN
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'init')
-rw-r--r-- | init/bootchartd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/bootchartd.c b/init/bootchartd.c index 9faf14d36..d1f9ed30e 100644 --- a/init/bootchartd.c +++ b/init/bootchartd.c | |||
@@ -57,7 +57,7 @@ | |||
57 | 57 | ||
58 | /* Globals */ | 58 | /* Globals */ |
59 | struct globals { | 59 | struct globals { |
60 | char jiffy_line[sizeof(bb_common_bufsiz1)]; | 60 | char jiffy_line[COMMON_BUFSIZE]; |
61 | } FIX_ALIASING; | 61 | } FIX_ALIASING; |
62 | #define G (*(struct globals*)&bb_common_bufsiz1) | 62 | #define G (*(struct globals*)&bb_common_bufsiz1) |
63 | #define INIT_G() do { } while (0) | 63 | #define INIT_G() do { } while (0) |