1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-07-13 01:00:23 +02:00

Rename lstRemove() to lstRemoveIdx().

This works better with the names of upcoming functions and seems sensible even in isolation.
This commit is contained in:
David Steele
2019-09-06 16:50:57 -04:00
parent dde0c2b0c9
commit 2eb1d1fee3
5 changed files with 6 additions and 6 deletions

View File

@ -253,7 +253,7 @@ protocolParallelResult(ProtocolParallel *this)
if (protocolParallelJobState(job) == protocolParallelJobStateDone)
{
result = protocolParallelJobMove(job, memContextCurrent());
lstRemove(this->jobList, jobIdx);
lstRemoveIdx(this->jobList, jobIdx);
break;
}
}