From c1907f0cc49e38df9853b7547c9afce5204e4784 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 17 May 2014 17:57:53 -0400 Subject: Fix a bunch of functions that were declared static then defined not-static. Per testing with a compiler that whines about this. --- src/backend/replication/logical/reorderbuffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/backend/replication/logical/reorderbuffer.c') diff --git a/src/backend/replication/logical/reorderbuffer.c b/src/backend/replication/logical/reorderbuffer.c index f96e3e1d93b..12960f4997b 100644 --- a/src/backend/replication/logical/reorderbuffer.c +++ b/src/backend/replication/logical/reorderbuffer.c @@ -322,7 +322,7 @@ ReorderBufferGetTXN(ReorderBuffer *rb) * Deallocation might be delayed for efficiency purposes, for details check * the comments above max_cached_changes's definition. */ -void +static void ReorderBufferReturnTXN(ReorderBuffer *rb, ReorderBufferTXN *txn) { /* clean the lookup cache if we were cached (quite likely) */ -- cgit v1.2.3