diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-11-14 16:58:17 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-11-14 16:58:17 +0000 |
commit | bef8927ad4b655ffa574a26810597de601fd8daf (patch) | |
tree | 97383aeb134342f55f9caad13ff2f2771ffc0520 /timezone/zdump.c | |
parent | 146c129a46b58a6af9379047e2c4832d446a6185 (diff) | |
download | glibc-bef8927ad4b655ffa574a26810597de601fd8daf.tar glibc-bef8927ad4b655ffa574a26810597de601fd8daf.tar.gz glibc-bef8927ad4b655ffa574a26810597de601fd8daf.tar.bz2 glibc-bef8927ad4b655ffa574a26810597de601fd8daf.zip |
[BZ #3137]
2006-11-14 Ulrich Drepper <drepper@redhat.com>
* timezone/zdump.c: Redo fix for BZ #3137.
* timezone/scheck.c: Likewise.
Diffstat (limited to 'timezone/zdump.c')
-rw-r--r-- | timezone/zdump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/timezone/zdump.c b/timezone/zdump.c index b5dd09b861..ae4d286b12 100644 --- a/timezone/zdump.c +++ b/timezone/zdump.c @@ -385,7 +385,7 @@ _("%s: usage is %s [ --version ] [ -v ] [ -c [loyear,]hiyear ] zonename ...\n"), } if (fflush(stdout) || ferror(stdout)) { (void) fprintf(stderr, "%s: ", progname); - (void) perror(_("Error writing standard output")); + (void) perror(_("Error writing to standard output")); exit(EXIT_FAILURE); } exit(EXIT_SUCCESS); @@ -423,7 +423,7 @@ _("%s: use of -v on system with floating time_t other than float or double\n"), t = t1; t1 = 2 * t1 + 1; } - + absolute_max_time = t; t = -t; absolute_min_time = t - 1; |