diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2013-05-27 13:46:49 +1000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-05-26 22:41:31 -0600 |
commit | c21344add2fc589df83b29be5831c36a372201bd (patch) | |
tree | bfb7cb4aef0343bf9f02928b916e4531deb790ba /dix | |
parent | cb3018d8a15add48efb3335e1f79b66378166008 (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>
Diffstat (limited to 'dix')
-rw-r--r-- | dix/cursor.c | 6 |
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; } |