We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bb8b62 commit b601c8dCopy full SHA for b601c8d
src/backend/utils/adt/nabstime.c
@@ -9,7 +9,7 @@
9
*
10
11
* IDENTIFICATION
12
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.69 2000/06/09 01:11:08 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.70 2000/06/27 18:08:49 momjian Exp $
13
14
* NOTES
15
@@ -215,8 +215,9 @@ GetCurrentTime(struct tm * tm)
215
216
217
void
218
-abstime2tm(AbsoluteTime time, int *tzp, struct tm * tm, char *tzn)
+abstime2tm(AbsoluteTime _time, int *tzp, struct tm * tm, char *tzn)
219
{
220
+ time_t time = (time_t) _time;
221
#ifdef USE_POSIX_TIME
222
struct tm *tx;
223
0 commit comments