basebackup_to_shell: Add some const qualifiers for consistency

pull/111/head
Peter Eisentraut 3 years ago
parent 369f09e420
commit 4cb65e1072
  1. 6
      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. * making substitutions as appropriate for escape sequences.
*/ */
static char * static char *
shell_construct_command(char *base_command, const char *filename, shell_construct_command(const char *base_command, const char *filename,
char *target_detail) const char *target_detail)
{ {
StringInfoData buf; StringInfoData buf;
char *c; const char *c;
initStringInfo(&buf); initStringInfo(&buf);
for (c = base_command; *c != '\0'; ++c) for (c = base_command; *c != '\0'; ++c)

Loading…
Cancel
Save