From: Thomas Munro Date: Thu, 23 Jul 2020 09:10:49 +0000 (+1200) Subject: Fix error message. X-Git-Tag: REL_11_9~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=028f0c3a86d003ecaab05ff9df2386f806a3ddf3;p=thirdparty%2Fpostgresql.git Fix error message. Remove extra space. Back-patch to all releases, like commit 7897e3bb. Author: Lu, Chenyang Discussion: https://postgr.es/m/795d03c6129844d3803e7eea48f5af0d%40G08CNEXMBPEKD04.g08.fujitsu.local --- diff --git a/src/backend/storage/file/buffile.c b/src/backend/storage/file/buffile.c index 337508f6c3d..4bfcda179d9 100644 --- a/src/backend/storage/file/buffile.c +++ b/src/backend/storage/file/buffile.c @@ -522,7 +522,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->offsets[file->curFile] += bytestowrite;