Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
06e6573d
Commit
06e6573d
authored
May 21, 2008
by
Magnus Hagander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix function headers not matching prototype in header file, per
compiler warnings on msvc.
parent
206378e4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
src/bin/psql/print.c
src/bin/psql/print.c
+5
-5
No files found.
src/bin/psql/print.c
View file @
06e6573d
...
...
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2008, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/bin/psql/print.c,v 1.10
7 2008/05/18 06:50:08 adunstan
Exp $
* $PostgreSQL: pgsql/src/bin/psql/print.c,v 1.10
8 2008/05/21 16:00:10 mha
Exp $
*/
#include "postgres_fe.h"
...
...
@@ -1978,7 +1978,7 @@ ClosePager(FILE *pagerpipe)
*/
void
printTableInit
(
printTableContent
*
const
content
,
const
printTableOpt
*
opt
,
const
char
*
title
,
int
ncolumns
,
int
nrows
)
const
char
*
title
,
const
int
ncolumns
,
const
int
nrows
)
{
content
->
opt
=
opt
;
content
->
title
=
title
;
...
...
@@ -2016,7 +2016,7 @@ printTableInit(printTableContent *const content, const printTableOpt *opt,
*/
void
printTableAddHeader
(
printTableContent
*
const
content
,
const
char
*
header
,
bool
translate
,
char
align
)
const
bool
translate
,
const
char
align
)
{
#ifndef ENABLE_NLS
(
void
)
translate
;
/* unused parameter */
...
...
@@ -2053,7 +2053,7 @@ printTableAddHeader(printTableContent *const content, const char *header,
*/
void
printTableAddCell
(
printTableContent
*
const
content
,
const
char
*
cell
,
bool
translate
)
const
bool
translate
)
{
#ifndef ENABLE_NLS
(
void
)
translate
;
/* unused parameter */
...
...
@@ -2133,7 +2133,7 @@ printTableSetFooter(printTableContent *const content, const char *footer)
* printTableInit() again.
*/
void
printTableCleanup
(
printTableContent
*
content
)
printTableCleanup
(
printTableContent
*
con
st
con
tent
)
{
free
(
content
->
headers
);
free
(
content
->
cells
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment