aboutsummaryrefslogtreecommitdiff
path: root/src/common/rmtree.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/rmtree.c')
-rw-r--r--src/common/rmtree.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/rmtree.c b/src/common/rmtree.c
index 2c3c4dd2d44..3c207917b5b 100644
--- a/src/common/rmtree.c
+++ b/src/common/rmtree.c
@@ -77,7 +77,7 @@ rmtree(const char *path, bool rmtopdir)
if (errno != ENOENT)
{
pg_log_warning("could not stat file or directory \"%s\": %m",
- pathbuf);
+ pathbuf);
result = false;
}
continue;
@@ -99,7 +99,7 @@ rmtree(const char *path, bool rmtopdir)
if (errno != ENOENT)
{
pg_log_warning("could not remove file or directory \"%s\": %m",
- pathbuf);
+ pathbuf);
result = false;
}
}
@@ -111,7 +111,7 @@ rmtree(const char *path, bool rmtopdir)
if (rmdir(path) != 0)
{
pg_log_warning("could not remove file or directory \"%s\": %m",
- path);
+ path);
result = false;
}
}