summaryrefslogtreecommitdiff
path: root/src/common/rmtree.c
diff options
context:
space:
mode:
authorPeter Eisentraut2023-05-19 16:45:29 +0000
committerPeter Eisentraut2023-05-19 16:45:29 +0000
commit8e7912e73da008862180112cc6ba4d0aa5fa955d (patch)
tree4b05da87bfb9e8ec1914579f04bc4469451edb6b /src/common/rmtree.c
parente5f85744eaa5ca83ff4d27509ed094ca33ed485e (diff)
Message style improvements
Diffstat (limited to 'src/common/rmtree.c')
-rw-r--r--src/common/rmtree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/rmtree.c b/src/common/rmtree.c
index a3e536149be..cd99d3f4719 100644
--- a/src/common/rmtree.c
+++ b/src/common/rmtree.c
@@ -92,7 +92,7 @@ rmtree(const char *path, bool rmtopdir)
default:
if (unlink(pathbuf) != 0 && errno != ENOENT)
{
- pg_log_warning("could not unlink file \"%s\": %m", pathbuf);
+ pg_log_warning("could not remove file \"%s\": %m", pathbuf);
result = false;
}
break;