Remove stray format char in randr example

This commit is contained in:
Rabin Vincent 2016-05-22 14:13:31 +02:00 committed by Přemysl Janouch
parent 1614b58c42
commit 1f83ea75a2
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}