Skip to content

Commit

Permalink
Corrected boolean print in compare.go
Browse files Browse the repository at this point in the history
  • Loading branch information
fredericlemoine committed Nov 9, 2016
1 parent 5e7eafb commit 71af065
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/compare.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func compare(tree1 string, tree2 string, tips bool, cpus int) {

fmt.Fprintf(os.Stderr, "Reference : %s\n", tree1)
fmt.Fprintf(os.Stderr, "Compared : %s\n", tree2)
fmt.Fprintf(os.Stderr, "With tips : %b\n", tips)
fmt.Fprintf(os.Stderr, "With tips : %t\n", tips)
fmt.Fprintf(os.Stderr, "Threads : %d\n", cpus)

if refTree, err = utils.ReadRefTree(tree1); err != nil {
Expand Down

0 comments on commit 71af065

Please sign in to comment.