@@ -1210,15 +1210,15 @@ ReadTwoPhaseFile(TransactionId xid, bool give_warnings)
1210
1210
stat .st_size > MaxAllocSize )
1211
1211
{
1212
1212
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 );
1214
1214
return NULL ;
1215
1215
}
1216
1216
1217
1217
crc_offset = stat .st_size - sizeof (pg_crc32c );
1218
1218
if (crc_offset != MAXALIGN (crc_offset ))
1219
1219
{
1220
1220
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 );
1222
1222
return NULL ;
1223
1223
}
1224
1224
@@ -1245,7 +1245,7 @@ ReadTwoPhaseFile(TransactionId xid, bool give_warnings)
1245
1245
if (hdr -> magic != TWOPHASE_MAGIC || hdr -> total_len != stat .st_size )
1246
1246
{
1247
1247
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 );
1249
1249
return NULL ;
1250
1250
}
1251
1251
@@ -1258,7 +1258,7 @@ ReadTwoPhaseFile(TransactionId xid, bool give_warnings)
1258
1258
if (!EQ_CRC32C (calc_crc , file_crc ))
1259
1259
{
1260
1260
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 );
1262
1262
return NULL ;
1263
1263
}
1264
1264
0 commit comments