From a842d8a85d77a3b8657f53224bf7791c3abfe22a Mon Sep 17 00:00:00 2001 From: Jeremy Huddleston Date: Tue, 20 Nov 2007 16:02:02 -0800 Subject: [PATCH] Dix: Re-ebable ErrorF reporting of incorrect refcount in FreeFontPath (cherry picked from commit c362d829a6829367621faedc9ad7e10549ab64dc) --- dix/dixfonts.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dix/dixfonts.c b/dix/dixfonts.c index e085bd0c7..f10011e4b 100644 --- a/dix/dixfonts.c +++ b/dix/dixfonts.c @@ -1632,9 +1632,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 */ } }