summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Zimmermann <madroach@gmerlin.de>2020-10-23 21:00:06 +0200
committerChristopher Zimmermann <madroach@gmerlin.de>2020-10-23 21:00:41 +0200
commit5727003b1df9071a2bc9a42bc0b25d7c03c8de09 (patch)
tree61901bb0f8b291b9f724315e65cd2e7b3180ad46
parent91af80a0aa18c969cd90668eed80bcbfc1e40661 (diff)
remove leftover debug printf
-rw-r--r--write.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/write.c b/write.c
index 90a1d5b..cfc4793 100644
--- a/write.c
+++ b/write.c
@@ -295,8 +295,6 @@ fontMetrics(FontPtr font)
if(font->pxMetrics.underlinePosition == UNDEF)
font->metrics.underlinePosition = - font->metrics.descent * 2;
else {
- fprintf(stderr, "Setting underlinePosition. pxMetrics.underlinePosition is %d. height is %d\n",
- font->pxMetrics.underlinePosition, font->pxMetrics.height);
font->metrics.underlinePosition =
font->pxMetrics.underlinePosition
* TWO_SIXTEENTH / font->pxMetrics.height;