From e65dadec36909e26b4f44c1a776898e26ef9aec3 Mon Sep 17 00:00:00 2001 From: Grzegorz Kolodziejczyk Date: Fri, 5 Sep 2014 14:48:26 +0200 Subject: [PATCH] androd/client: Extend history line size and depth For some commands current history line size isn't enough to store it complete. For complex/long run, extended history depth can be helpful. --- android/client/history.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/client/history.c b/android/client/history.c index 3dae27a88..ca4664cfe 100644 --- a/android/client/history.c +++ b/android/client/history.c @@ -24,8 +24,8 @@ /* Very simple history storage for easy usage of tool */ -#define HISTORY_DEPTH 20 -#define LINE_SIZE 100 +#define HISTORY_DEPTH 40 +#define LINE_SIZE 200 static char lines[HISTORY_DEPTH][LINE_SIZE]; static int last_line = 0; static int history_size = 0; -- 2.47.3