pgsql: Try to fix some DSA-related compiler warnings.

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Try to fix some DSA-related compiler warnings.
Date: 2016-12-05 15:02:44
Message-ID: E1cDumy-00062l-Ub@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Try to fix some DSA-related compiler warnings.

Commit 13df76a537cca3b8884911d8fdf7c89a457a8dd3 was overconfident
about how portable %016lx is. Some compilers complain because they
need %016llx, while platforms where DSA pointers are only 32 bits
get unhappy about using a 64-bit format for a 32-bit quantity.

Thomas Munro, per an off-list suggestion from me.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/670b3bc8f5d1000b5475e41c6f023c490e8500fe

Modified Files
--------------
src/backend/utils/mmgr/dsa.c | 7 ++++---
src/include/utils/dsa.h | 2 ++
2 files changed, 6 insertions(+), 3 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2016-12-05 15:09:05 Re: [COMMITTERS] pgsql: Introduce dynamic shared memory areas.
Previous Message Heikki Linnakangas 2016-12-05 12:52:27 pgsql: Fix creation of stand-alone INSTALL.html file.