aboutsummaryrefslogtreecommitdiff
path: root/src/common/rmtree.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2019-05-22 12:55:34 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2019-05-22 12:55:34 -0400
commitbe76af171cdb3e7465c4ef234af403f97ad79b7b (patch)
tree1fa62d2b7a6680a4237a1548f7002fa0b234b143 /src/common/rmtree.c
parent66a4bad83aaa6613a45a00a488c04427f9969fb4 (diff)
downloadpostgresql-be76af171cdb3e7465c4ef234af403f97ad79b7b.tar.gz
postgresql-be76af171cdb3e7465c4ef234af403f97ad79b7b.zip
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/16296.1558103386@sss.pgh.pa.us
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;
}
}