diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2016-03-23 06:58:31 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2016-03-23 06:58:31 +0000 |
commit | 81f304f5bcb8c4213c24cc5628472e14277cd27d (patch) | |
tree | cd263269901f4588db07db248f3e7cb73d475e5a /Build/source/texk/web2c/lib/texmfmp.c | |
parent | 21f7068a7822086cf9a2b9c82699038afba14da4 (diff) |
web2c/lib, web2c/pdftexdir: sync with the pdftex upstream
git-svn-id: svn://tug.org/texlive/trunk@40109 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/lib/texmfmp.c')
-rw-r--r-- | Build/source/texk/web2c/lib/texmfmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/lib/texmfmp.c b/Build/source/texk/web2c/lib/texmfmp.c index b5242e2d372..fae82477b93 100644 --- a/Build/source/texk/web2c/lib/texmfmp.c +++ b/Build/source/texk/web2c/lib/texmfmp.c @@ -3000,8 +3000,8 @@ void initstarttime(void) errno = 0; epoch = strtoll(source_date_epoch, &endptr, 10); if (epoch < 0 || *endptr != '\0' || errno != 0) { - fprintf(stderr, "Environment variable $SOURCE_DATE_EPOCH: invalid value: %s\n", source_date_epoch); - uexit(EXIT_FAILURE); + FATAL1 ("invalid value for environment variable $SOURCE_DATE_EPOCH: %s", + source_date_epoch); } start_time = epoch; makepdftime(start_time, start_time_str, /* utc= */true); |