Skip to content

Commit b0472a7

Browse files
committed
... win fix
1 parent 2640ec6 commit b0472a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/file.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2721,7 +2721,7 @@ fio_send_file_write(FILE* out, send_file_state* st, char *buf, size_t len)
27212721
if (st->read_size > st->write_size &&
27222722
_chsize_s(fileno(out), st->read_size) != 0)
27232723
{
2724-
elog(WARNING, "Could not change file size to %lld: %m", st->read_size)
2724+
elog(WARNING, "Could not change file size to %lld: %m", st->read_size);
27252725
return false;
27262726
}
27272727
#endif

0 commit comments

Comments
 (0)