aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2025-03-13 15:17:08 +0100
committerPeter Eisentraut <peter@eisentraut.org>2025-03-13 15:17:08 +0100
commitbb25276205b45b60b5a1ddb7db3b66f501a02164 (patch)
tree05c642d881064d9cf51f7b5e42b87873dc89da1e /src
parent3691edfab97187789b8a1cbb9dce4acf0ecd8f5a (diff)
downloadpostgresql-bb25276205b45b60b5a1ddb7db3b66f501a02164.tar.gz
postgresql-bb25276205b45b60b5a1ddb7db3b66f501a02164.zip
Fix copy-and-paste mistake in error message
Introduced in commit a68159ff2b3.
Diffstat (limited to 'src')
-rw-r--r--src/backend/storage/file/fd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c
index e454db4c020..62f1185859f 100644
--- a/src/backend/storage/file/fd.c
+++ b/src/backend/storage/file/fd.c
@@ -4026,7 +4026,7 @@ check_debug_io_direct(char **newval, void **extra, GucSource source)
#if BLCKSZ < PG_IO_ALIGN_SIZE
if (result && (flags & IO_DIRECT_DATA))
{
- GUC_check_errdetail("\"%s\" is not supported for WAL because %s is too small.",
+ GUC_check_errdetail("\"%s\" is not supported for data because %s is too small.",
"debug_io_direct", "BLCKSZ");
result = false;
}