]> granicus.if.org Git - postgresql/commitdiff
Fix some int4->int32.
authorBruce Momjian <bruce@momjian.us>
Tue, 23 Jan 2001 03:10:25 +0000 (03:10 +0000)
committerBruce Momjian <bruce@momjian.us>
Tue, 23 Jan 2001 03:10:25 +0000 (03:10 +0000)
src/include/utils/date.h
src/include/utils/timestamp.h

index 2cef2982fdc2b399a087c5f11f729c07695b820d..bd2e9d01bf368ee4c888962d400be25d780e5e61 100644 (file)
@@ -7,7 +7,7 @@
  * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $Id: date.h,v 1.8 2001/01/23 01:48:17 momjian Exp $
+ * $Id: date.h,v 1.9 2001/01/23 03:10:25 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -25,7 +25,7 @@ typedef struct
 {
        double          time;                   /* all time units other than months and
                                                                 * years */
-       int                     zone;                   /* numeric time zone, in seconds */
+       int32           zone;                   /* numeric time zone, in seconds */
 } TimeTzADT;
 
 /*
index 9e0f8807f4b7d678653c4b7b500b38b05f7599ef..eec3357ff11c70e00592bdc01a6d72b84d059dd1 100644 (file)
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $Id: timestamp.h,v 1.12 2001/01/23 01:48:17 momjian Exp $
+ * $Id: timestamp.h,v 1.13 2001/01/23 03:10:25 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -36,7 +36,7 @@ typedef double Timestamp;
 typedef struct
 {
        double          time;   /* all time units other than months and years */
-       int             month;  /* months and years, after time for alignment */
+       int32           month;  /* months and years, after time for alignment */
 } Interval;