Skip to content

Commit 7a0e049

Browse files
fix verbose count flag
1 parent c71a8a4 commit 7a0e049

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ pub fn run(tool: Tool, matches: ArgMatches) -> Result<i32> {
368368
// User flags
369369
lltool.args(&tool_args);
370370

371-
if matches.get_flag("verbose") {
371+
if matches.get_count("verbose") > 0 {
372372
eprintln!("{lltool:?}");
373373
}
374374

0 commit comments

Comments
 (0)