Silence FPE error message; according to ajax, this bug is known

but not worth fixing.
(cherry picked from commit 1033eb0336)
This commit is contained in:
Ben Byer 2007-12-13 20:46:33 -08:00 committed by Jeremy Huddleston
parent 16c032a602
commit b709718a69

View File

@ -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 */
}
}