Skip to content

Commit b601c8d

Browse files
committed
Tamotsu Nakagawa has posted a fix for this to a local mail list in
Japan. Can someone comment on this? According to him, with the patch now only the geometry test fails. Tatsuo Ishii
1 parent 5bb8b62 commit b601c8d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/backend/utils/adt/nabstime.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
*
1111
* IDENTIFICATION
12-
* $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.69 2000/06/09 01:11:08 tgl Exp $
12+
* $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.70 2000/06/27 18:08:49 momjian Exp $
1313
*
1414
* NOTES
1515
*
@@ -215,8 +215,9 @@ GetCurrentTime(struct tm * tm)
215215

216216

217217
void
218-
abstime2tm(AbsoluteTime time, int *tzp, struct tm * tm, char *tzn)
218+
abstime2tm(AbsoluteTime _time, int *tzp, struct tm * tm, char *tzn)
219219
{
220+
time_t time = (time_t) _time;
220221
#ifdef USE_POSIX_TIME
221222
struct tm *tx;
222223

0 commit comments

Comments
 (0)