From 4cb65e10722164fd12c6b8d010a39ce0f92e71f9 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Tue, 13 Dec 2022 10:39:44 +0100 Subject: [PATCH] basebackup_to_shell: Add some const qualifiers for consistency --- contrib/basebackup_to_shell/basebackup_to_shell.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/basebackup_to_shell/basebackup_to_shell.c b/contrib/basebackup_to_shell/basebackup_to_shell.c index e2b18631e0..bdaf67a4c8 100644 --- a/contrib/basebackup_to_shell/basebackup_to_shell.c +++ b/contrib/basebackup_to_shell/basebackup_to_shell.c @@ -205,11 +205,11 @@ shell_get_sink(bbsink *next_sink, void *detail_arg) * making substitutions as appropriate for escape sequences. */ static char * -shell_construct_command(char *base_command, const char *filename, - char *target_detail) +shell_construct_command(const char *base_command, const char *filename, + const char *target_detail) { StringInfoData buf; - char *c; + const char *c; initStringInfo(&buf); for (c = base_command; *c != '\0'; ++c) -- 2.39.5