diff options
author | Magnus Hagander <magnus@hagander.net> | 2011-01-11 21:12:12 +0100 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2011-01-11 21:12:12 +0100 |
commit | 47a5f3e9dab68f47ebadc759afb97b900c437c54 (patch) | |
tree | 6b450c81dcfca8c3334ae8dab3b8217764866fb7 /src | |
parent | e6dce4e439e1d271dad9a95bc4b94147be2fc39a (diff) | |
download | postgresql-47a5f3e9dab68f47ebadc759afb97b900c437c54.tar.gz postgresql-47a5f3e9dab68f47ebadc759afb97b900c437c54.zip |
Add missing function prototype, for consistency
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/replication/basebackup.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/replication/basebackup.c b/src/backend/replication/basebackup.c index 2a74c5f8310..c09700f7980 100644 --- a/src/backend/replication/basebackup.c +++ b/src/backend/replication/basebackup.c @@ -39,6 +39,7 @@ static void send_int8_string(StringInfoData *buf, int64 intval); static void SendBackupHeader(List *tablespaces); static void SendBackupDirectory(char *location, char *spcoid); static void base_backup_cleanup(int code, Datum arg); +static void perform_base_backup(const char *backup_label, List *tablespaces); typedef struct { |