summaryrefslogtreecommitdiffstats
path: root/xorg
diff options
context:
space:
mode:
authorJay Sorg <jay.sorg@gmail.com>2013-02-17 20:38:18 -0800
committerJay Sorg <jay.sorg@gmail.com>2013-02-17 20:38:18 -0800
commit4607de10a698bec0bf616eed545bb039661e40cb (patch)
tree71e550f2c1b1b26439f859f341775b42f547f11f /xorg
parent3365cae66b911f4d21a34948bf81be57bd451c47 (diff)
downloadxrdp-proprietary-4607de10a698bec0bf616eed545bb039661e40cb.tar.gz
xrdp-proprietary-4607de10a698bec0bf616eed545bb039661e40cb.zip
randr test, print ConfigureNotify width and height
Diffstat (limited to 'xorg')
-rw-r--r--xorg/tests/randr/trandr.c3
1 files changed, 2 insertions, 1 deletions
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: