diff options
author | Karl Berry <karl@freefriends.org> | 2007-10-11 23:57:07 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2007-10-11 23:57:07 +0000 |
commit | 45ff05c3b3e23e091a87e3a5238ecf7ea93a2c2d (patch) | |
tree | b4b5c90dd1b5b3a94d57b989ca4348357defd42a | |
parent | 25686c679f92961b5f68b973da170f001567e853 (diff) |
improve error msg working.
git-svn-id: svn://tug.org/texlive/trunk@5165 c570f23f-e606-0410-a88d-b1316a301751
-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); |