diff options
Diffstat (limited to 'Build/source/texk/dvipdfm-x/pdfdoc.c')
-rw-r--r-- | Build/source/texk/dvipdfm-x/pdfdoc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/dvipdfm-x/pdfdoc.c b/Build/source/texk/dvipdfm-x/pdfdoc.c index 3bf163ab4d9..21d47c06e67 100644 --- a/Build/source/texk/dvipdfm-x/pdfdoc.c +++ b/Build/source/texk/dvipdfm-x/pdfdoc.c @@ -443,7 +443,7 @@ compute_timezone_offset() time_t gmtoff; now = get_unique_time_if_given(); - if (now == 0) { + if (now == INVALID_EPOCH_VALUE) { now = time(NULL); localtime_r(&now, &local); gmtime_r(&now, &tm); @@ -467,7 +467,7 @@ asn_date (char *date_string) struct tm *bd_time; current_time = get_unique_time_if_given(); - if (current_time == 0) { + if (current_time == INVALID_EPOCH_VALUE) { time(¤t_time); bd_time = localtime(¤t_time); |