pgsql: Fix some 32-bit shift warnings in MSVC

From: David Rowley <drowley(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix some 32-bit shift warnings in MSVC
Date: 2022-11-24 22:05:52
Message-ID: E1oyKLv-000g9B-Eb@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix some 32-bit shift warnings in MSVC

7b378237a widened AclMode to 64 bits which resulted in 3 new additional
warnings on MSVC. Here we make use of UINT64CONST to reassure the
compiler that we do intend the bit shift expression to yield a 64-bit
result.

Discussion: https://postgr.es/m/CAApHDvo=pn01Y_3zASZZqn+cotF1c4QFCwWgk6MiF0VscaE5ug@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/2d1f3bce97a9f4ac3ec4acbf337ffef598522216

Modified Files
--------------
src/backend/utils/adt/acl.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Paquier 2022-11-24 22:41:09 pgsql: Introduce variables for initial and max nesting depth on configu
Previous Message David Rowley 2022-11-24 21:50:44 Re: pgsql: Expand AclMode to 64 bits