1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +03:00

Fix several places where a function was declared static and then defined

without static.  Per testing with a compiler that complains about this.
This commit is contained in:
Tom Lane
2009-06-12 16:17:29 +00:00
parent 63e183ca46
commit bfd06a713b
3 changed files with 6 additions and 6 deletions

View File

@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2009, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/bin/psql/print.c,v 1.115 2009/06/11 14:49:08 momjian Exp $
* $PostgreSQL: pgsql/src/bin/psql/print.c,v 1.116 2009/06/12 16:17:29 tgl Exp $
*/
#include "postgres_fe.h"
@ -2170,7 +2170,7 @@ printTableCleanup(printTableContent *const content)
*
* Setup pager if required
*/
void
static void
IsPagerNeeded(const printTableContent *cont, const int extra_lines, FILE **fout,
bool *is_pager)
{