diff options
author | Tom Lane | 2006-04-09 19:21:34 +0000 |
---|---|---|
committer | Tom Lane | 2006-04-09 19:21:34 +0000 |
commit | 513ec43ebda097f047210a07fc2e1f4abb9dd651 (patch) | |
tree | 2951848f170c4bdbbb5cf55025659de5ac47406b /src/timezone/localtime.c | |
parent | a81e281636ac8c927528648d9eed04e8083fcdf5 (diff) |
Suppress a couple of minor compiler warnings, per Magnus.
Diffstat (limited to 'src/timezone/localtime.c')
-rw-r--r-- | src/timezone/localtime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/timezone/localtime.c b/src/timezone/localtime.c index 342bdc920c8..fd609aba17f 100644 --- a/src/timezone/localtime.c +++ b/src/timezone/localtime.c @@ -3,7 +3,7 @@ * 1996-06-05 by Arthur David Olson (arthur_david_olson@nih.gov). * * IDENTIFICATION - * $PostgreSQL: pgsql/src/timezone/localtime.c,v 1.12 2005/10/15 02:49:51 momjian Exp $ + * $PostgreSQL: pgsql/src/timezone/localtime.c,v 1.13 2006/04/09 19:21:34 tgl Exp $ */ /* @@ -456,7 +456,7 @@ getrule(const char *strp, struct rule * rulep) * calculate the Epoch-relative time that rule takes effect. */ static pg_time_t -transtime(const pg_time_t janfirst, int year, +transtime(pg_time_t janfirst, int year, const struct rule * rulep, long offset) { int leapyear; |