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>
This commit is contained in:
Peter Hutterer 2013-05-27 13:46:49 +10:00 committed by Keith Packard
parent cb3018d8a1
commit c21344add2

View File

@ -134,12 +134,8 @@ FreeCursor(pointer value, XID cid)
CursorPtr CursorPtr
RefCursor(CursorPtr cursor) RefCursor(CursorPtr cursor)
{ {
ErrorF("%s ::::: cursor is %p", __func__, cursor); if (cursor)
if (cursor) {
xorg_backtrace();
cursor->refcnt++; cursor->refcnt++;
}
ErrorF("\n");
return cursor; return cursor;
} }