summaryrefslogtreecommitdiff
path: root/examples/randr/main.go
diff options
context:
space:
mode:
authorAndrew Gallant <[email protected]>2016-05-22 14:18:43 -0400
committerAndrew Gallant <[email protected]>2016-05-22 14:18:43 -0400
commit27f122750802c950b2c869a5b63dafcf590ced95 (patch)
tree7b3c4f439d9edaca06bba613604671ff44881587 /examples/randr/main.go
parentb3a96fa0bc5f20dd08ed8342359a31b64bd761fa (diff)
parent3abbe7f74b5f73f2d4185d77268098318c8b5a3a (diff)
Merge pull request #37 from rabinv/fix-randr-printf
Remove stray format char in randr example
Diffstat (limited to 'examples/randr/main.go')
-rw-r--r--examples/randr/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/randr/main.go b/examples/randr/main.go
index 01ad594..e349144 100644
--- a/examples/randr/main.go
+++ b/examples/randr/main.go
@@ -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)
}