From 7e373e12b250f771dd3902b77a16f827897521de Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 13 Oct 2019 18:43:07 -0700 Subject: [PATCH] Fixed max depth str length to be closer to actual range of lengths. --- bb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bb.c b/bb.c index f2ff0d0..d2dae40 100644 --- a/bb.c +++ b/bb.c @@ -1197,7 +1197,7 @@ void update_term_size(int sig) int main(int argc, char *argv[]) { - char *initial_path = NULL, depthstr[64] = {0}; + char *initial_path = NULL, depthstr[16] = {0}; char sep = '\n'; int print_dir = 0, print_selection = 0;