Silence compiler warning induced by commit de4389712.
Smarter compilers can see that "slot" can't be used uninitialized, but some popular ones cannot. Noted by Jeff Janes.
This commit is contained in:
parent
e315346d83
commit
49da00677d
@ -254,7 +254,7 @@ logicalrep_worker_launch(Oid dbid, Oid subid, const char *subname, Oid userid,
|
||||
BackgroundWorker bgw;
|
||||
BackgroundWorkerHandle *bgw_handle;
|
||||
int i;
|
||||
int slot;
|
||||
int slot = 0;
|
||||
LogicalRepWorker *worker = NULL;
|
||||
int nsyncworkers;
|
||||
TimestampTz now;
|
||||
|
Loading…
x
Reference in New Issue
Block a user