summaryrefslogtreecommitdiff
path: root/fitz/res_font.c
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2010-06-29 22:58:55 +0200
committerTor Andersson <tor@ghostscript.com>2010-06-29 22:58:55 +0200
commit47375231d93cc5158a5ea18a7868409c1d5c3686 (patch)
tree491d2efce6642edee823d47e4f8de8792236b384 /fitz/res_font.c
parent7748021cc09a52fbb12fc33d7e84806890394249 (diff)
downloadmupdf-47375231d93cc5158a5ea18a7868409c1d5c3686.tar.xz
Reformat to remove all instances of double spaces (to easier spot indentation errors in the future).
Diffstat (limited to 'fitz/res_font.c')
-rw-r--r--fitz/res_font.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fitz/res_font.c b/fitz/res_font.c
index 933b732e..448484c9 100644
--- a/fitz/res_font.c
+++ b/fitz/res_font.c
@@ -392,19 +392,19 @@ fz_debugfont(fz_font *font)
if (font->ftface)
{
- printf(" freetype face %p\n", font->ftface);
+ printf("\tfreetype face %p\n", font->ftface);
if (font->ftsubstitute)
- printf(" substitute font\n");
+ printf("\tsubstitute font\n");
}
if (font->t3procs)
{
- printf(" type3 matrix [%g %g %g %g]\n",
+ printf("\ttype3 matrix [%g %g %g %g]\n",
font->t3matrix.a, font->t3matrix.b,
font->t3matrix.c, font->t3matrix.d);
}
- printf(" bbox [%g %g %g %g]\n",
+ printf("\tbbox [%g %g %g %g]\n",
font->bbox.x0, font->bbox.y0,
font->bbox.x1, font->bbox.y1);