diff options
Diffstat (limited to 'nexgb/examples/randr')
| -rw-r--r-- | nexgb/examples/randr/main.go | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/nexgb/examples/randr/main.go b/nexgb/examples/randr/main.go index ac6fb7a..01ad594 100644 --- a/nexgb/examples/randr/main.go +++ b/nexgb/examples/randr/main.go @@ -49,7 +49,8 @@ func main() {  			bestMode := info.Modes[0]  			for _, mode := range resources.Modes {  				if mode.Id == uint32(bestMode) { -					fmt.Printf("Width: %d, Height: %d\n", mode.Width, mode.Height) +					fmt.Printf("Width: %d, Height: %d\n", +						mode.Width, mode.Height)  				}  			}  		} | 
