Skip to content

Commit 6cc75e1

Browse files
committed
Fix using of parse_uint64()
1 parent c68086a commit 6cc75e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/restore.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,7 @@ parseRecoveryTargetOptions(const char *target_time,
930930
{
931931
rt->xid_specified = true;
932932
#ifdef PGPRO_EE
933-
if (parse_uint64(target_xid, &dummy_xid))
933+
if (parse_uint64(target_xid, &dummy_xid, 0))
934934
#else
935935
if (parse_uint32(target_xid, &dummy_xid, 0))
936936
#endif

0 commit comments

Comments
 (0)