summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvipng/tfm.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/dvipng/tfm.c')
-rw-r--r--Build/source/texk/dvipng/tfm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/texk/dvipng/tfm.c b/Build/source/texk/dvipng/tfm.c
index 13215dc4b93..9db2dc8af62 100644
--- a/Build/source/texk/dvipng/tfm.c
+++ b/Build/source/texk/dvipng/tfm.c
@@ -39,7 +39,7 @@ bool ReadTFM(struct font_entry * tfontp, char* tfmname)
DEBUG_PRINT((DEBUG_DVI|DEBUG_FT|DEBUG_TFM),
("\n OPEN METRICS:\t'%s'", tfmname));
if (MmapFile(tfmname,&fmmap)) return(false);
- position=(unsigned char*)fmmap.mmap;
+ position=(unsigned char*)fmmap.dp_mmap;
lh = UNumRead(position+2,2);
bc = UNumRead(position+4,2);
ec = UNumRead(position+6,2);
@@ -56,10 +56,10 @@ bool ReadTFM(struct font_entry * tfontp, char* tfmname)
/* Read char widths */
c=bc;
- position=(unsigned char*)fmmap.mmap+24+lh*4;
+ position=(unsigned char*)fmmap.dp_mmap+24+lh*4;
while(c <= ec) {
DEBUG_PRINT(DEBUG_TFM,("\n@%ld TFM METRICS:\t",
- (long)position - (long)fmmap.mmap));
+ (long)position - (long)fmmap.dp_mmap));
tcharptr=xmalloc(sizeof(struct char_entry));
tcharptr->data=NULL;
tcharptr->tfmw=width[*position];