8000 some newlines for previous commit · m99coder/postgres_cluster@412ac8b · GitHub
[go: up one dir, main page]

Skip to content

Commit 412ac8b

Browse files
committed
some newlines for previous commit
1 parent 072cd76 commit 412ac8b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/backend/access/transam/twophase.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1210,15 +1210,15 @@ ReadTwoPhaseFile(TransactionId xid, bool give_warnings)
12101210
stat.st_size > MaxAllocSize)
12111211
{
12121212
CloseTransientFile(fd);
1213-
fprintf(stderr, "wrong size of two-phase file \"%s\"", path);
1213+
fprintf(stderr, "wrong size of two-phase file \"%s\"\n", path);
12141214
return NULL;
12151215
}
12161216

12171217
crc_offset = stat.st_size - sizeof(pg_crc32c);
12181218
if (crc_offset != MAXALIGN(crc_offset))
12191219
{
12201220
CloseTransientFile(fd);
1221-
fprintf(stderr, "wrong crc offset in two-phase file \"%s\"", path);
1221+
fprintf(stderr, "wrong crc offset in two-phase file \"%s\"\n", path);
12221222
return NULL;
12231223
}
12241224

@@ -1245,7 +1245,7 @@ ReadTwoPhaseFile(TransactionId xid, bool give_warnings)
12451245
if (hdr->magic != TWOPHASE_MAGIC || hdr->total_len != stat.st_size)
12461246
{
12471247
pfree(buf);
1248-
fprintf(stderr, "muggle two-phase file \"%s\": no magic", path);
1248+
fprintf(stderr, "muggle two-phase file \"%s\": no magic\n", path);
12491249
return NULL;
12501250
}
12511251

@@ -1258,7 +1258,7 @@ ReadTwoPhaseFile(TransactionId xid, bool give_warnings)
12581258
if (!EQ_CRC32C(calc_crc, file_crc))
12591259
{
12601260
pfree(buf);
1261-
fprintf(stderr, "wrong crc32 in two-phase file \"%s\"", path);
1261+
fprintf(stderr, "wrong crc32 in two-phase file \"%s\"\n", path);
12621262
return NULL;
12631263
}
12641264

0 commit comments

Comments
 (0)
0