diff options
Diffstat (limited to 'Build/source/texk/kpathsea')
-rw-r--r-- | Build/source/texk/kpathsea/win32/ChangeLog | 6 | ||||
-rw-r--r-- | Build/source/texk/kpathsea/win32/fmtutil.c | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/win32/ChangeLog b/Build/source/texk/kpathsea/win32/ChangeLog index 36a89fa2c84..e781ed39260 100644 --- a/Build/source/texk/kpathsea/win32/ChangeLog +++ b/Build/source/texk/kpathsea/win32/ChangeLog @@ -1,6 +1,10 @@ +2011-08-11 Peter Breitenlohner <peb@mppmu.mpg.de> + + * fmtutil.c: Return zero or one (Errorcnt could be 256). + 2011-08-10 Akira Kakuto <kakuto@fuk.kindai.ac.jp> - *fmtutil.c: returns a nonzero value if it fails to make a format. + * fmtutil.c: return a nonzero value if it fails to make a format. 2011-08-10 Peter Breitenlohner <peb@mppmu.mpg.de> diff --git a/Build/source/texk/kpathsea/win32/fmtutil.c b/Build/source/texk/kpathsea/win32/fmtutil.c index 421a77962c2..f713a2ea18e 100644 --- a/Build/source/texk/kpathsea/win32/fmtutil.c +++ b/Build/source/texk/kpathsea/win32/fmtutil.c @@ -955,5 +955,5 @@ Check executable files. (ignore "Batch" or "Script" files (case 'x')) Errorcnt); fprintf(stderr, "For details, see log file(s) in the (fmt/base/mem) dir(s).\n"); } - return Errorcnt; + return Errorcnt != 0; } |