diff options
author | Ron Yorston <rmy@pobox.com> | 2014-01-13 09:11:24 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2014-01-13 09:11:24 +0000 |
commit | e6edcba4f2fc20a3e9db75ebe82d7a71094fe17c (patch) | |
tree | af786c447cae6ca59e195b31fbae442c0b42d198 /libbb | |
parent | 215f730e98215bff8dfacafdaa70e4a11395ad53 (diff) | |
parent | 0f592d7fb94c5887528d0ee24020c2225ab71c28 (diff) | |
download | busybox-w32-e6edcba4f2fc20a3e9db75ebe82d7a71094fe17c.tar.gz busybox-w32-e6edcba4f2fc20a3e9db75ebe82d7a71094fe17c.tar.bz2 busybox-w32-e6edcba4f2fc20a3e9db75ebe82d7a71094fe17c.zip |
Merge branch 'busybox' into merge
Conflicts:
include/platform.h
scripts/basic/fixdep.c
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/lineedit.c | 2 | ||||
-rw-r--r-- | libbb/speed_table.c | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/libbb/lineedit.c b/libbb/lineedit.c index 38d4c598d..4bb1ab783 100644 --- a/libbb/lineedit.c +++ b/libbb/lineedit.c | |||
@@ -1267,7 +1267,9 @@ line_input_t* FAST_FUNC new_line_input_t(int flags) | |||
1267 | { | 1267 | { |
1268 | line_input_t *n = xzalloc(sizeof(*n)); | 1268 | line_input_t *n = xzalloc(sizeof(*n)); |
1269 | n->flags = flags; | 1269 | n->flags = flags; |
1270 | #if MAX_HISTORY > 0 | ||
1270 | n->max_history = MAX_HISTORY; | 1271 | n->max_history = MAX_HISTORY; |
1272 | #endif | ||
1271 | return n; | 1273 | return n; |
1272 | } | 1274 | } |
1273 | 1275 | ||
diff --git a/libbb/speed_table.c b/libbb/speed_table.c index 45159f1f3..174d531b2 100644 --- a/libbb/speed_table.c +++ b/libbb/speed_table.c | |||
@@ -10,7 +10,12 @@ | |||
10 | #include "libbb.h" | 10 | #include "libbb.h" |
11 | 11 | ||
12 | struct speed_map { | 12 | struct speed_map { |
13 | #if defined __FreeBSD__ | ||
14 | /* On FreeBSD, B<num> constants don't fit into a short */ | ||
15 | unsigned speed; | ||
16 | #else | ||
13 | unsigned short speed; | 17 | unsigned short speed; |
18 | #endif | ||
14 | unsigned short value; | 19 | unsigned short value; |
15 | }; | 20 | }; |
16 | 21 | ||