Skip to content

Commit

Permalink
Make -vvvv (and -vvvvv...) behave like -vvv (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano authored and haampie committed Feb 22, 2022
1 parent 3a0ba45 commit f8c23cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libtree.c
Original file line number Diff line number Diff line change
Expand Up @@ -1190,7 +1190,7 @@ static int recurse(char *current_file, size_t depth, struct libtree_state_t *s,
depth < MAX_RECURSION_DEPTH &&
((!seen_before && !in_exclude_list) ||
(!seen_before && in_exclude_list && s->verbosity >= 2) ||
s->verbosity == 3);
s->verbosity >= 3);

// Just print the library and return
if (!should_recurse) {
Expand Down

0 comments on commit f8c23cb

Please sign in to comment.