Fix loop variable signedness

This commit is contained in:
Peter Eisentraut 2021-10-06 07:22:47 +02:00
parent ec2133a447
commit ba216d3b54
1 changed files with 1 additions and 2 deletions

View File

@ -282,7 +282,6 @@ void
_PG_init(void)
{
BackgroundWorker worker;
unsigned int i;
/* get the configuration */
DefineCustomIntVariable("worker_spi.naptime",
@ -336,7 +335,7 @@ _PG_init(void)
/*
* Now fill in worker-specific data, and do the actual registrations.
*/
for (i = 1; i <= worker_spi_total_workers; i++)
for (int i = 1; i <= worker_spi_total_workers; i++)
{
snprintf(worker.bgw_name, BGW_MAXLEN, "worker_spi worker %d", i);
snprintf(worker.bgw_type, BGW_MAXLEN, "worker_spi");