1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-02-09 14:33:17 +02:00

Make compiler happy

This commit is contained in:
Arthur Zakirov 2017-06-16 15:50:54 +03:00
parent 179f57a0f8
commit 810ff516cc
2 changed files with 4 additions and 1 deletions

View File

@ -916,7 +916,7 @@ pg_stop_backup(pgBackup *backup)
PGresult *res;
uint32 xlogid;
uint32 xrecoff;
XLogRecPtr restore_lsn = InvalidXLogRecPtr ;
XLogRecPtr restore_lsn = InvalidXLogRecPtr;
bool sent = false;
int pg_stop_backup_timeout = 0;

View File

@ -252,6 +252,9 @@ pg_log(eLogType type, const char *fmt, ...)
case PG_FATAL:
elevel = ERROR;
break;
default:
elog(ERROR, "invalid logging level: %d", type);
break;
}
/*