diff options
author | Andres Freund <andres@anarazel.de> | 2022-05-12 09:10:03 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2022-05-12 09:11:31 -0700 |
commit | b5f44225b833a2fd07b4a7c77e33ae0c37e6a7d6 (patch) | |
tree | 66abf67591d077b1e53d71d2d68d384cafa20b9d /contrib/basebackup_to_shell/basebackup_to_shell.c | |
parent | 79b58c6f684315d39dfdbd721da7576d90bd9f99 (diff) | |
download | postgresql-b5f44225b833a2fd07b4a7c77e33ae0c37e6a7d6.tar.gz postgresql-b5f44225b833a2fd07b4a7c77e33ae0c37e6a7d6.zip |
Mark a few 'bbsink' related functions / variables static.
Discussion: https://postgr.es/m/20220506234924.6mxxotl3xl63db3l@alap3.anarazel.de
Diffstat (limited to 'contrib/basebackup_to_shell/basebackup_to_shell.c')
-rw-r--r-- | contrib/basebackup_to_shell/basebackup_to_shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/basebackup_to_shell/basebackup_to_shell.c b/contrib/basebackup_to_shell/basebackup_to_shell.c index fd462a8ff4d..a279219966d 100644 --- a/contrib/basebackup_to_shell/basebackup_to_shell.c +++ b/contrib/basebackup_to_shell/basebackup_to_shell.c @@ -50,7 +50,7 @@ static void bbsink_shell_begin_manifest(bbsink *sink); static void bbsink_shell_manifest_contents(bbsink *sink, size_t len); static void bbsink_shell_end_manifest(bbsink *sink); -const bbsink_ops bbsink_shell_ops = { +static const bbsink_ops bbsink_shell_ops = { .begin_backup = bbsink_forward_begin_backup, .begin_archive = bbsink_shell_begin_archive, .archive_contents = bbsink_shell_archive_contents, |