diff options
author | Thomas Munro <tmunro@postgresql.org> | 2020-07-23 21:10:49 +1200 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2020-07-23 21:17:47 +1200 |
commit | 8bf4e69a7f7b076fae3b8e2361977f590d095b5a (patch) | |
tree | 58326095c5edbc48d500d30c13bd21015c73f924 /src | |
parent | e30a63f258f5cf3e7e797be131890ecd1144b44f (diff) | |
download | postgresql-8bf4e69a7f7b076fae3b8e2361977f590d095b5a.tar.gz postgresql-8bf4e69a7f7b076fae3b8e2361977f590d095b5a.zip |
Fix error message.
Remove extra space. Back-patch to all releases, like commit 7897e3bb.
Author: Lu, Chenyang <lucy.fnst@cn.fujitsu.com>
Discussion: https://postgr.es/m/795d03c6129844d3803e7eea48f5af0d%40G08CNEXMBPEKD04.g08.fujitsu.local
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/storage/file/buffile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/storage/file/buffile.c b/src/backend/storage/file/buffile.c index 63e45ecc48a..1d548a02d62 100644 --- a/src/backend/storage/file/buffile.c +++ b/src/backend/storage/file/buffile.c @@ -499,7 +499,7 @@ BufFileDumpBuffer(BufFile *file) if (bytestowrite <= 0) ereport(ERROR, (errcode_for_file_access(), - errmsg("could not write to file \"%s\" : %m", + errmsg("could not write to file \"%s\": %m", FilePathName(thisfile)))); file->curOffset += bytestowrite; wpos += bytestowrite; |