mirror of
https://github.com/postgres/postgres.git
synced 2026-02-23 18:04:41 -05:00
Fix incorrect variable datatype
Both datatypes map to the same underlying one which is why it still worked, but we should use the correct type. Author: Kyotaro HORIGUCHI
This commit is contained in:
parent
1f0d78863e
commit
71b3368088
1 changed files with 1 additions and 1 deletions
|
|
@ -8963,7 +8963,7 @@ KeepLogSeg(XLogRecPtr recptr, XLogSegNo *logSegNo)
|
|||
/* then check whether slots limit removal further */
|
||||
if (max_replication_slots > 0 && keep != InvalidXLogRecPtr)
|
||||
{
|
||||
XLogRecPtr slotSegNo;
|
||||
XLogSegNo slotSegNo;
|
||||
|
||||
XLByteToSeg(keep, slotSegNo);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue