diff options
Diffstat (limited to 'Build/source')
-rw-r--r-- | Build/source/texk/makeindexk/mkind.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/makeindexk/mkind.c b/Build/source/texk/makeindexk/mkind.c index be5949d9c06..0be830bbb2d 100644 --- a/Build/source/texk/makeindexk/mkind.c +++ b/Build/source/texk/makeindexk/mkind.c @@ -508,7 +508,7 @@ char *fn; FATAL("Index style file %s not found.\n", fn); } else { if (strlen(found) >= sizeof(sty_fn)) { - FATAL("Style file %s too long.\n", found); + FATAL("Style file name %s too long.\n", found); } strcpy(sty_fn,found); if ((sty_fp = OPEN_IN(sty_fn)) == NULL) { @@ -518,7 +518,7 @@ char *fn; #else if ((path = getenv(STYLE_PATH)) == NULL) { if (strlen(fn) >= sizeof(sty_fn)) { - FATAL("Style file %s too long.\n", fn); + FATAL("Style file name %s too long.\n", fn); } /* style input path not defined */ strcpy(sty_fn, fn); |