diff options
author | Sven Gothel <[email protected]> | 2012-02-22 17:31:29 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-02-22 17:31:29 +0100 |
commit | 52b596b1340c90a57948a81467f61ce98a2c2a66 (patch) | |
tree | 22f5e46b9276bcf4539161b87d0f7c3c4293e05b /src/newt/native | |
parent | 7085c11e493e5a7bbe56a602a3252f4e28c2f974 (diff) |
X11Screen: Only dump RandR version info in DEBUG mode.
Diffstat (limited to 'src/newt/native')
-rw-r--r-- | src/newt/native/X11Screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newt/native/X11Screen.c b/src/newt/native/X11Screen.c index 1b7fea770..4dcb8f6f1 100644 --- a/src/newt/native/X11Screen.c +++ b/src/newt/native/X11Screen.c @@ -74,7 +74,7 @@ static Bool NewtScreen_getRANDRVersion(Display *dpy, int *major, int *minor) { return False; } if(0 == showedRandRVersion) { - fprintf(stderr, "X11 RandR Version %d.%d\n", *major, *minor); + DBG_PRINT("X11 RandR Version %d.%d\n", *major, *minor); showedRandRVersion = 1; } return True; |