diff options
author | marha <marha@users.sourceforge.net> | 2009-09-23 13:09:20 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-09-23 13:09:20 +0000 |
commit | 4e6f458771a9a6533f1c0f75a2896d3286249d7e (patch) | |
tree | ec5ae22c564b2c2afccc49c7e8e75be03dfb310c /xorg-server/hw | |
parent | 2680f7f614ea946974c07e5187b2017c6f35dcf8 (diff) | |
download | vcxsrv-4e6f458771a9a6533f1c0f75a2896d3286249d7e.tar.gz vcxsrv-4e6f458771a9a6533f1c0f75a2896d3286249d7e.tar.bz2 vcxsrv-4e6f458771a9a6533f1c0f75a2896d3286249d7e.zip |
Switched some error traces to debug traces.
Diffstat (limited to 'xorg-server/hw')
-rw-r--r-- | xorg-server/hw/xwin/winclipboardwrappers.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xorg-server/hw/xwin/winclipboardwrappers.c b/xorg-server/hw/xwin/winclipboardwrappers.c index 7a954daa7..ab4e8e43e 100644 --- a/xorg-server/hw/xwin/winclipboardwrappers.c +++ b/xorg-server/hw/xwin/winclipboardwrappers.c @@ -424,7 +424,7 @@ winProcSetSelectionOwner (ClientPtr client) /* Abort if invalid selection */ if (!ValidAtom (stuff->selection)) { - ErrorF ("winProcSetSelectionOwner - Found BadAtom, aborting.\n"); + winDebug ("winProcSetSelectionOwner - Found BadAtom, aborting.\n"); goto winProcSetSelectionOwner_Done; } @@ -434,7 +434,7 @@ winProcSetSelectionOwner (ClientPtr client) /* Abort if clipboard manager is owning the selection */ if (pDrawable->id == g_iClipboardWindow) { - ErrorF ("winProcSetSelectionOwner - We changed ownership, " + winDebug ("winProcSetSelectionOwner - We changed ownership, " "aborting.\n"); goto winProcSetSelectionOwner_Done; } @@ -442,7 +442,7 @@ winProcSetSelectionOwner (ClientPtr client) /* Abort if root window is taking ownership */ if (pDrawable->id == 0) { - ErrorF ("winProcSetSelectionOwner - Root window taking ownership, " + winDebug ("winProcSetSelectionOwner - Root window taking ownership, " "aborting\n"); goto winProcSetSelectionOwner_Done; } |