Skip to content
This repository has been archived by the owner on Jun 4, 2021. It is now read-only.

Commit

Permalink
Print the string instead of the pointer (#99)
Browse files Browse the repository at this point in the history
Fixes a compile error complaining about using a string directive on a
pointer.
  • Loading branch information
grantr authored and knative-prow-robot committed Nov 13, 2018
1 parent 183818b commit 54f5b5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/githubsource/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func main() {
log.Fatalf("No secret token given")
}

log.Printf("Sink is: %q", sink)
log.Printf("Sink is: %q", *sink)

ra := &githubsource.GitHubReceiveAdapter{
Sink: *sink,
Expand Down

0 comments on commit 54f5b5d

Please sign in to comment.