Skip to content

Commit 028f0c3

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 6ae2d92 commit 028f0c3

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
@@ -522,7 +522,7 @@ BufFileDumpBuffer(BufFile *file)
522522
if (bytestowrite <= 0)
523523
ereport(ERROR,
524524
(errcode_for_file_access(),
525-
errmsg("could not write to file \"%s\" : %m",
525+
errmsg("could not write to file \"%s\": %m",
526526
FilePathName(thisfile))));
527527

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

0 commit comments

Comments
 (0)