aboutsummaryrefslogtreecommitdiff
path: root/nexgb
diff options
context:
space:
mode:
authorRabin Vincent <rabin@rab.in>2016-05-22 14:13:31 +0200
committerPřemysl Janouch <p@janouch.name>2018-09-08 16:49:26 +0200
commit1f83ea75a2972ad9749edf188211f31517170854 (patch)
tree7a99b77b7614c9508544ef35a8219cd93cb41a96 /nexgb
parent1614b58c420f7875f92a5469c77fd7aeccc7a106 (diff)
downloadhaven-1f83ea75a2972ad9749edf188211f31517170854.tar.gz
haven-1f83ea75a2972ad9749edf188211f31517170854.tar.xz
haven-1f83ea75a2972ad9749edf188211f31517170854.zip
Remove stray format char in randr example
Diffstat (limited to 'nexgb')
-rw-r--r--nexgb/examples/randr/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/nexgb/examples/randr/main.go b/nexgb/examples/randr/main.go
index 01ad594..e349144 100644
--- a/nexgb/examples/randr/main.go
+++ b/nexgb/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)
}