From 4607de10a698bec0bf616eed545bb039661e40cb Mon Sep 17 00:00:00 2001 From: Jay Sorg Date: Sun, 17 Feb 2013 20:38:18 -0800 Subject: [PATCH] randr test, print ConfigureNotify width and height --- xorg/tests/randr/trandr.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xorg/tests/randr/trandr.c b/xorg/tests/randr/trandr.c index 0ee185cc..77ce2c33 100644 --- a/xorg/tests/randr/trandr.c +++ b/xorg/tests/randr/trandr.c @@ -119,7 +119,8 @@ main(int argc, char **argv) case ConfigureNotify: if (ev.xconfigure.window == root_window) { - printf("ConfigureNotify for root window\n"); + printf("ConfigureNotify for root window width %d height %d\n", + ev.xconfigure.width, ev.xconfigure.height); } break; default: