Skip to content

Commit a100094

Browse files
committed
Remove wrong semicolon
1 parent f833ca6 commit a100094

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

data.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ backup_data_page(pgFile *file, const XLogRecPtr *prev_backup_start_lsn,
7878
/* TODO Should we check specific error code here? */
7979
if (verbose)
8080
elog(WARNING, "File: %s, could not seek to block %u."
81-
"Probably the file was truncated after backup start.",
82-
file->path, blknum);
83-
return;
81+
"Probably the file was truncated after backup start.",
82+
file->path, blknum);
83+
return;
8484
}
8585

8686
read_len = fread(&page, 1, BLCKSZ, in);

restore.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ do_restore_or_validate(time_t target_backup_id,
215215
{
216216
pgBackup *backup = (pgBackup *) parray_get(backups, i);
217217

218-
if (backup->status == BACKUP_STATUS_OK);
218+
if (backup->status == BACKUP_STATUS_OK)
219219
{
220220
pgBackupValidate(backup);
221221

0 commit comments

Comments
 (0)