diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2017-09-21 19:32:19 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2017-09-22 00:04:29 -0400 |
commit | a890432a872afc9ca2327573f3313fd994d17384 (patch) | |
tree | 07e4f18bfcf2430b553056f8c118d8cabf113b63 | |
parent | d57c7a7c506276597af619bdb8c62fa5b592745a (diff) | |
download | postgresql-a890432a872afc9ca2327573f3313fd994d17384.tar.gz postgresql-a890432a872afc9ca2327573f3313fd994d17384.zip |
Revert "Fix bool/int type confusion"
This reverts commit 0ec2e908babfbfde83a3925680f06b16408739ff.
We'll use the upstream (IANA) fix instead.
-rw-r--r-- | src/timezone/localtime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timezone/localtime.c b/src/timezone/localtime.c index 82c18e85446..08642d12363 100644 --- a/src/timezone/localtime.c +++ b/src/timezone/localtime.c @@ -1379,7 +1379,7 @@ timesub(const pg_time_t *timep, int32 offset, int y; const int *ip; int64 corr; - int hit; + bool hit; int i; corr = 0; |