From b874a5c0aafc766891c9e567af48b891ea14be4f Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 26 Feb 2009 14:40:22 +1000 Subject: [PATCH] mi: only print the "EQ overflowing" error once. Signed-off-by: Peter Hutterer --- mi/mieq.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mi/mieq.c b/mi/mieq.c index 7cda080cd..084660263 100644 --- a/mi/mieq.c +++ b/mi/mieq.c @@ -176,9 +176,9 @@ mieqEnqueue(DeviceIntPtr pDev, InternalEvent *e) * stuck in an infinite loop somewhere, but SIGIO is still getting * handled. */ if (((oldtail + 1) % QUEUE_SIZE) == miEventQueue.head) { - ErrorF("[mi] EQ overflowing. The server is probably stuck " - "in an infinite loop.\n"); if (!stuck) { + ErrorF("[mi] EQ overflowing. The server is probably stuck " + "in an infinite loop.\n"); xorg_backtrace(); stuck = 1; }