summaryrefslogtreecommitdiff
path: root/src/mktime.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-04-14 00:02:53 +0000
committerUlrich Drepper <drepper@redhat.com>1998-04-14 00:02:53 +0000
commit06bd27fdf5fa529e58ce129e3d906d17b5dcda34 (patch)
treeb3b06998a92e40fccfede0d5c5bc23a0754192c6 /src/mktime.c
parent4ad8bb205e89d91ca2703641bfc602499ac6678c (diff)
downloademacs-06bd27fdf5fa529e58ce129e3d906d17b5dcda34.tar.gz
automatically generated from GPLed version
Diffstat (limited to 'src/mktime.c')
-rw-r--r--src/mktime.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mktime.c b/src/mktime.c
index b852951458e..de5b47ddeff 100644
--- a/src/mktime.c
+++ b/src/mktime.c
@@ -2,7 +2,7 @@
Contributed by Paul Eggert (eggert@twinsun.com).
NOTE: The canonical source of this file is maintained with the GNU C Library.
- Bugs can be reported to bug-glibc@prep.ai.mit.edu.
+ Bugs can be reported to bug-glibc@gnu.org.
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
@@ -79,7 +79,7 @@
It is necessary at least when t == time_t. */
#define TYPE_MINIMUM(t) ((t) (TYPE_SIGNED (t) \
? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0))
-#define TYPE_MAXIMUM(t) (~ (t) 0 - TYPE_MINIMUM (t))
+#define TYPE_MAXIMUM(t) ((t) (~ (t) 0 - TYPE_MINIMUM (t)))
#ifndef INT_MIN
# define INT_MIN TYPE_MINIMUM (int)