pgsql: Add missing format attributes - Mailing list pgsql-committers

From Peter Eisentraut
Subject pgsql: Add missing format attributes
Date
Msg-id E1R2TzY-0003x9-62@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Add missing format attributes

Add __attribute__ decorations for printf format checking to the places that
were missing them.  Fix the resulting warnings.  Add
-Wmissing-format-attribute to the standard set of warnings for GCC, so these
don't happen again.

The warning fixes here are relatively harmless.  The one serious problem
discovered by this was already committed earlier in
cf15fb5cabfbc71e07be23cfbc813daee6c5014f.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/52ce20589a8bac4eccaea043b1fe283daaf4f9e3

Modified Files
--------------
configure                                |   60 ++++++++++++++++++++++++++++++
configure.in                             |    1 +
contrib/pg_upgrade/info.c                |    2 +-
contrib/pg_upgrade/pg_upgrade.h          |   16 +++++---
contrib/pg_upgrade/relfilenode.c         |    4 +-
contrib/pgcrypto/px.h                    |    3 +-
src/bin/pg_dump/pg_backup_archiver.c     |    4 +-
src/bin/pg_dump/pg_backup_tar.c          |    2 +-
src/include/lib/stringinfo.h             |    3 +-
src/interfaces/ecpg/ecpglib/descriptor.c |    4 +-
src/interfaces/ecpg/ecpglib/error.c      |    2 +-
src/interfaces/ecpg/ecpglib/execute.c    |    2 +-
src/interfaces/ecpg/ecpglib/extern.h     |    2 +-
13 files changed, 87 insertions(+), 18 deletions(-)


pgsql-committers by date:

Previous
From: Itagaki Takahiro
Date:
Subject: pgsql: Add datatype directory to SUBDIRS.
Next
From: Bruce Momjian
Date:
Subject: pgsql: Remove double-quoting of table names in clusterdb. BACKWARD COM