summaryrefslogtreecommitdiff
path: root/examples/randr/main.go
diff options
context:
space:
mode:
authorRabin Vincent <[email protected]>2016-05-22 14:13:31 +0200
committerRabin Vincent <[email protected]>2016-05-22 14:13:31 +0200
commit3abbe7f74b5f73f2d4185d77268098318c8b5a3a (patch)
tree7b3c4f439d9edaca06bba613604671ff44881587 /examples/randr/main.go
parentb3a96fa0bc5f20dd08ed8342359a31b64bd761fa (diff)
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)
}