[git commit] lineedit: fix build failure

Denys Vlasenko vda.linux at googlemail.com
Fri Nov 4 00:09:09 UTC 2011


commit: http://git.busybox.net/busybox/commit/?id=c0cae52662ccced9df19f19ec94238d1b1e3bd71
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 libbb/lineedit.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/libbb/lineedit.c b/libbb/lineedit.c
index 0d23288..1390ed6 100644
--- a/libbb/lineedit.c
+++ b/libbb/lineedit.c
@@ -1520,8 +1520,10 @@ static void remember_in_history(char *str)
 		for (i = 0; i < state->max_history-1; i++)
 			state->history[i] = state->history[i+1];
 		/* i == state->max_history-1 */
-		if (ENABLE_FEATURE_EDITING_SAVE_ON_EXIT && state->cnt_history_in_file)
+# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
+		if (state->cnt_history_in_file)
 			state->cnt_history_in_file--;
+# endif
 	}
 	/* i <= state->max_history-1 */
 	state->history[i++] = xstrdup(str);


More information about the busybox-cvs mailing list