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
7b66e2c0
Commit
7b66e2c0
authored
Mar 27, 2011
by
Greg Stark
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix up a couple non-prototypes of the form foo() to be foo(void) -- found using -Wstrict-prototypes
parent
d0dd5c73
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/bin/pg_basebackup/pg_basebackup.c
src/bin/pg_basebackup/pg_basebackup.c
+2
-2
src/interfaces/ecpg/include/ecpglib.h
src/interfaces/ecpg/include/ecpglib.h
+1
-1
No files found.
src/bin/pg_basebackup/pg_basebackup.c
View file @
7b66e2c0
...
...
@@ -64,7 +64,7 @@ static PGconn *GetConnection(void);
static
void
ReceiveTarFile
(
PGconn
*
conn
,
PGresult
*
res
,
int
rownum
);
static
void
ReceiveAndUnpackTarFile
(
PGconn
*
conn
,
PGresult
*
res
,
int
rownum
);
static
void
BaseBackup
();
static
void
BaseBackup
(
void
);
#ifdef HAVE_LIBZ
static
const
char
*
...
...
@@ -752,7 +752,7 @@ GetConnection(void)
}
static
void
BaseBackup
()
BaseBackup
(
void
)
{
PGresult
*
res
;
uint32
timeline
;
...
...
src/interfaces/ecpg/include/ecpglib.h
View file @
7b66e2c0
...
...
@@ -92,7 +92,7 @@ void *ECPGget_var(int number);
void
ECPGfree_auto_mem
(
void
);
#ifdef ENABLE_THREAD_SAFETY
void
ecpg_pthreads_init
();
void
ecpg_pthreads_init
(
void
);
#endif
#ifdef __cplusplus
...
...
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