pgsql: Fix a bunch of functions that were declared static then defined

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix a bunch of functions that were declared static then defined
Date: 2014-05-17 21:57:59
Message-ID: E1WlmcB-0002QL-Fv@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix a bunch of functions that were declared static then defined not-static.

Per testing with a compiler that whines about this.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/c1907f0cc49e38df9853b7547c9afce5204e4784

Modified Files
--------------
src/backend/access/transam/xlog.c | 2 +-
src/backend/replication/logical/reorderbuffer.c | 2 +-
src/backend/utils/cache/relcache.c | 2 +-
src/backend/utils/misc/guc.c | 2 +-
src/bin/pg_ctl/pg_ctl.c | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2014-05-17 22:29:56 pgsql: Make fallback implementation of pg_memory_barrier() work.
Previous Message Andres Freund 2014-05-17 20:23:44 Re: pgsql: Fix unaligned accesses in DecodeUpdate().