diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2019-10-13 18:43:07 -0700 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2019-10-13 18:43:07 -0700 |
| commit | 7e373e12b250f771dd3902b77a16f827897521de (patch) | |
| tree | 85599074d75e69d080211417c4c92f1099ae627c /bb.c | |
| parent | 6ffe39308b3e102c830510c2f25d2224fdeac415 (diff) | |
Fixed max depth str length to be closer to actual range of lengths.
Diffstat (limited to 'bb.c')
| -rw-r--r-- | bb.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |
