diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2011-08-11 06:43:58 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2011-08-11 06:43:58 +0000 |
commit | 37fd1969850c6b3bdabf1909a9f745a17e64e199 (patch) | |
tree | bec6a6fe57570540896899694995a1e0702f9626 /Build/source/texk/kpathsea | |
parent | d53b4b75afcb24d3cbda96cdefeb5ef672da5e70 (diff) |
minor updates for WIN32
git-svn-id: svn://tug.org/texlive/trunk@23496 c570f23f-e606-0410-a88d-b1316a301751
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; } |