summaryrefslogtreecommitdiff
path: root/Build/source/texk/makejvf/write.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/makejvf/write.c')
-rw-r--r--Build/source/texk/makejvf/write.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/makejvf/write.c b/Build/source/texk/makejvf/write.c
index fcaf6ab576d..581bf815545 100644
--- a/Build/source/texk/makejvf/write.c
+++ b/Build/source/texk/makejvf/write.c
@@ -14,7 +14,7 @@ FILE *vfopen(char *name)
fp = fopen(name,"wb");
if (fp == NULL) {
fprintf(stderr,"I cannot create VF file, %s.",name);
- exit(-1);
+ exit(100);
}
fputc(247,fp); /* PRE */
@@ -820,7 +820,7 @@ void maketfm(char *name)
fp = fopen(nbuf,"wb");
if (fp == NULL) {
fprintf(stderr,"I cannot create TFM file, %s.",name);
- exit(-1);
+ exit(100);
}
fputnum(jfm_id,2,fp); /* JFM ID */