Skip to content

Commit fac4145

Browse files
committed
Fix error message.
Remove extra space. Back-patch to all releases, like commit 7897e3b. Author: Lu, Chenyang <lucy.fnst@cn.fujitsu.com> Discussion: https://postgr.es/m/795d03c6129844d3803e7eea48f5af0d%40G08CNEXMBPEKD04.g08.fujitsu.local
1 parent 9a3c895 commit fac4145

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/storage/file/buffile.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ BufFileDumpBuffer(BufFile *file)
340340
if (bytestowrite <= 0)
341341
ereport(ERROR,
342342
(errcode_for_file_access(),
343-
errmsg("could not write to file \"%s\" : %m",
343+
errmsg("could not write to file \"%s\": %m",
344344
FilePathName(thisfile))));
345345

346346
file->offsets[file->curFile] += bytestowrite;

0 commit comments

Comments
 (0)