summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon TURNEY <jon.turney@dronecode.org.uk>2009-11-22 23:35:09 +0000
committerJon TURNEY <jon.turney@dronecode.org.uk>2010-02-05 19:21:18 +0000
commitb7dbbd3cd4d28cd4939706b3bf6394ba8ecafaff (patch)
tree9e671bbab6560a8cace52b052651788b133755b1
parentc9cbbd5d1cfa58a2d9f08e25534ea8439284322d (diff)
Cygwin/X: Avoid cursor size log spam
Fedora 12 likes to use a 39x26 animated wait cursor. Avoid spamming the log with warnings that each frame can't be completely contained in the 32x32 native cursor Also reformat log message so it doesn't contain a '\n\t'. I mean, it's not like we might want to grep the log or something... Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Reviewed-by: Colin Harrison <colin.harrison@virgin.net>
-rw-r--r--hw/xwin/wincursor.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/xwin/wincursor.c b/hw/xwin/wincursor.c
index ce98162ef..7f1935a5d 100644
--- a/hw/xwin/wincursor.c
+++ b/hw/xwin/wincursor.c
@@ -188,8 +188,7 @@ winLoadCursor (ScreenPtr pScreen, CursorPtr pCursor, int screen)
if (pScreenPriv->cursor.sm_cx < pCursor->bits->width ||
pScreenPriv->cursor.sm_cy < pCursor->bits->height)
{
- winErrorFVerb (2, "winLoadCursor - Windows requires %dx%d cursor\n"
- "\tbut X requires %dx%d\n",
+ winErrorFVerb (3, "winLoadCursor - Windows requires %dx%d cursor but X requires %dx%d\n",
pScreenPriv->cursor.sm_cx, pScreenPriv->cursor.sm_cy,
pCursor->bits->width, pCursor->bits->height);
}