1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2024-12-02 09:53:24 +02:00

Fix using of parse_uint64()

This commit is contained in:
Arthur Zakirov 2017-12-01 17:38:10 +03:00
parent c68086a30e
commit 6cc75e16e1

View File

@ -930,7 +930,7 @@ parseRecoveryTargetOptions(const char *target_time,
{
rt->xid_specified = true;
#ifdef PGPRO_EE
if (parse_uint64(target_xid, &dummy_xid))
if (parse_uint64(target_xid, &dummy_xid, 0))
#else
if (parse_uint32(target_xid, &dummy_xid, 0))
#endif