diff options
author | Robert Haas <rhaas@postgresql.org> | 2025-03-17 16:05:35 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2025-03-17 16:06:17 -0400 |
commit | 203c1b4cc49455364b6bcab8034900d1c016b9cd (patch) | |
tree | d9b3e88538de20d25c6ec93cbf17285df52f29d2 | |
parent | 7e05df430be36ad34d9c797b21f56a4b9c64bbc8 (diff) | |
download | postgresql-203c1b4cc49455364b6bcab8034900d1c016b9cd.tar.gz postgresql-203c1b4cc49455364b6bcab8034900d1c016b9cd.zip |
Fix indentation.
Commit 99aeb84703177308c1541e2d11c09fdc59acb724 wasn't fully
reindented prior to commit.
-rw-r--r-- | src/bin/pg_combinebackup/copy_file.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bin/pg_combinebackup/copy_file.c b/src/bin/pg_combinebackup/copy_file.c index 97ecda5a66d..b0c94f6ee31 100644 --- a/src/bin/pg_combinebackup/copy_file.c +++ b/src/bin/pg_combinebackup/copy_file.c @@ -72,9 +72,10 @@ copy_file(const char *src, const char *dst, } #ifdef WIN32 + /* - * We have no specific switch to enable CopyFile on Windows, because - * it's supported (as far as we know) on all Windows machines. So, + * We have no specific switch to enable CopyFile on Windows, because it's + * supported (as far as we know) on all Windows machines. So, * automatically enable it unless some other strategy was selected. */ if (copy_method == COPY_METHOD_COPY) |