From b709718a6983dbd0d3badcde60be271d0d7aff52 Mon Sep 17 00:00:00 2001 From: Ben Byer Date: Thu, 13 Dec 2007 20:46:33 -0800 Subject: [PATCH] Silence FPE error message; according to ajax, this bug is known but not worth fixing. (cherry picked from commit 1033eb03368701dc4a52f40a737341b2931ab986) --- dix/dixfonts.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dix/dixfonts.c b/dix/dixfonts.c index c21b3ecb3..e7c349d3f 100644 --- a/dix/dixfonts.c +++ b/dix/dixfonts.c @@ -1628,9 +1628,9 @@ FreeFontPath(FontPathElementPtr *list, int n, Bool force) found++; } if (list[i]->refcount != found) { - ErrorF("FreeFontPath: FPE \"%.*s\" refcount is %d, should be %d; fixing.\n", + /* ErrorF("FreeFontPath: FPE \"%.*s\" refcount is %d, should be %d; fixing.\n", list[i]->name_length, list[i]->name, - list[i]->refcount, found); + list[i]->refcount, found); */ list[i]->refcount = found; /* ensure it will get freed */ } }