]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Silence compiler warning, hopefully.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 19 Jul 2019 18:48:57 +0000 (14:48 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 19 Jul 2019 18:49:31 +0000 (14:49 -0400)
Absorb commit e5e04c962a5d12eebbf867ca25905b3ccc34cbe0 from upstream
IANA code, in hopes of silencing warnings from MSVC about negating
a bool value.

Discussion: https://postgr.es/m/20190719035347.GJ1859@paquier.xyz

src/timezone/zic.c

index 5c81fcae0206a7e3b76252d2553322e73ab63443..57d7ed671d4874be3b5a821c38e541e4468d4473 100644 (file)
@@ -2406,7 +2406,7 @@ writezone(const char *const name, const char *const string, char version,
                if (pass == 1 && !want_bloat())
                {
                        utcnt = stdcnt = thisleapcnt = 0;
-                       thistimecnt = -locut - hicut;
+                       thistimecnt = -(locut + hicut);
                        thistypecnt = thischarcnt = 1;
                        thistimelim = thistimei;
                }