Skip to content

Commit

Permalink
Merge pull request #37 from rabinv/fix-randr-printf
Browse files Browse the repository at this point in the history
Remove stray format char in randr example
  • Loading branch information
BurntSushi committed May 22, 2016
2 parents b3a96fa + 3abbe7f commit 27f1227
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/randr/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func main() {
if err != nil {
log.Fatal(err)
}
fmt.Printf("%v, X: %d, Y: %d, Width: %d, Height: %d\n",
fmt.Printf("X: %d, Y: %d, Width: %d, Height: %d\n",
info.X, info.Y, info.Width, info.Height)
}

Expand Down

0 comments on commit 27f1227

Please sign in to comment.