Skip to content

Commit

Permalink
bugfix for signature
Browse files Browse the repository at this point in the history
  • Loading branch information
simonmittag committed Apr 19, 2024
1 parent e1bde9e commit 56ae030
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/puri/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ func main() {
}
}

func handleOutput(res string, err error) {
func handleOutput(res *string, err error) {
if err == nil {
fmt.Println(res)
fmt.Println(*res)
} else {
printUsage()
}
Expand Down

0 comments on commit 56ae030

Please sign in to comment.