diff options
author | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2008-04-02 18:05:34 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2008-04-02 18:05:34 -0700 |
commit | ed15556a9fc4ebdb88f42961052fc8456082165f (patch) | |
tree | 30e692b8a3e5dfb64231edcf03878b5ed07897d8 | |
parent | ea37e151dc6032d2a1a33cef809f2a7d507aae35 (diff) |
XQuartz: Change reporting of space change to debug log rather than stderr
-rw-r--r-- | hw/xquartz/xpr/xprScreen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xquartz/xpr/xprScreen.c b/hw/xquartz/xpr/xprScreen.c index b653a6e3b..852e6d8b6 100644 --- a/hw/xquartz/xpr/xprScreen.c +++ b/hw/xquartz/xpr/xprScreen.c @@ -107,7 +107,7 @@ static void eventHandler(unsigned int type, const void *arg, } break; case XP_EVENT_SPACE_CHANGED: - ErrorF("XP_EVENT_SPACE_CHANGED\n"); + DEBUG_LOG("XP_EVENT_SPACE_CHANGED\n"); if(arg_size == sizeof(uint32_t)) { uint32_t space_id = *(uint32_t *)arg; QuartzMessageServerThread(kXquartzSpaceChanged, 1, space_id); |