summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2013-05-27 13:46:49 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2013-07-17 14:37:54 +1000
commit54a7ae04a8475df6ce87e52ff995de22fafc7c92 (patch)
tree965b04ef8e81b724e397b165a7875a7b18c5a3db
parent1e29b269fd712ae1e3552eeddd3529015baee7ae (diff)
dix: remove logspam in RefCursor()
This shouldn't have been in the patch Reported-by: Colin Harrison <colin.harrison@virgin.net> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Keith Packard <keithp@keithp.com> Signed-off-by: Keith Packard <keithp@keithp.com> (cherry picked from commit c21344add2fc589df83b29be5831c36a372201bd)
-rw-r--r--dix/cursor.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/dix/cursor.c b/dix/cursor.c
index 0820b18ad..cd8305c6c 100644
--- a/dix/cursor.c
+++ b/dix/cursor.c
@@ -134,12 +134,8 @@ FreeCursor(pointer value, XID cid)
CursorPtr
RefCursor(CursorPtr cursor)
{
- ErrorF("%s ::::: cursor is %p", __func__, cursor);
- if (cursor) {
- xorg_backtrace();
+ if (cursor)
cursor->refcnt++;
- }
- ErrorF("\n");
return cursor;
}