summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvipng/vf.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/dvipng/vf.c')
-rw-r--r--Build/source/texk/dvipng/vf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/texk/dvipng/vf.c b/Build/source/texk/dvipng/vf.c
index 0d0f74298b0..382e2f6b15c 100644
--- a/Build/source/texk/dvipng/vf.c
+++ b/Build/source/texk/dvipng/vf.c
@@ -62,7 +62,7 @@ void InitVF(struct font_entry * tfontp)
Message(BE_VERBOSE,"<%s>", tfontp->name);
if (MmapFile(tfontp->name,&(tfontp->fmmap)))
Fatal("font file %s unusable", tfontp->name);
- position=(unsigned char*)tfontp->fmmap.mmap;
+ position=(unsigned char*)tfontp->fmmap.dp_mmap;
if (*(position) != PRE)
Fatal("unknown font format in file %s",tfontp->name);
if (*(position+1) != VF_ID)
@@ -82,7 +82,7 @@ void InitVF(struct font_entry * tfontp)
position += 8;
while(*position >= FNT_DEF1 && *position <= FNT_DEF4) {
DEBUG_PRINT(DEBUG_VF,("\n @%ld VF:\t%s",
- (long)position - (long)tfontp->fmmap.mmap,
+ (long)position - (long)tfontp->fmmap.dp_mmap,
dvi_commands[*position]));
FontDef(position,tfontp);
length = dvi_commandlength[*position];
@@ -98,7 +98,7 @@ void InitVF(struct font_entry * tfontp)
/* Read char definitions */
while(*position < FNT_DEF1) {
DEBUG_PRINT(DEBUG_VF,("\n@%ld VF CHAR:\t",
- (long)position - (long)tfontp->fmmap.mmap));
+ (long)position - (long)tfontp->fmmap.dp_mmap));
tcharptr=xmalloc(sizeof(struct char_entry));
switch (*position) {
case LONG_CHAR: