summaryrefslogtreecommitdiff
path: root/src/common/rmtree.c
diff options
context:
space:
mode:
authorTom Lane2019-05-22 16:55:34 +0000
committerTom Lane2019-05-22 16:55:34 +0000
commitbe76af171cdb3e7465c4ef234af403f97ad79b7b (patch)
tree1fa62d2b7a6680a4237a1548f7002fa0b234b143 /src/common/rmtree.c
parent66a4bad83aaa6613a45a00a488c04427f9969fb4 (diff)
Initial pgindent run for v12.
This is still using the 2.0 version of pg_bsd_indent. I thought it would be good to commit this separately, so as to document the differences between 2.0 and 2.1 behavior. Discussion: https://postgr.es/m/[email protected]
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;
}
}