Skip to content
Snippets Groups Projects
Commit d3be71a2 authored by Heikki Linnakangas's avatar Heikki Linnakangas
Browse files

Remove unused (in non-assertion-enabled build) variable.

parent bf69b535
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/replication/walsender.c,v 1.1 2010/01/15 09:19:03 heikki Exp $
* $PostgreSQL: pgsql/src/backend/replication/walsender.c,v 1.2 2010/01/15 11:47:15 heikki Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -452,14 +452,13 @@ static void
InitWalSnd(void)
{
/* use volatile pointer to prevent code rearrangement */
volatile WalSndCtlData *walsndctl = WalSndCtl;
int i;
/*
* WalSndCtl should be set up already (we inherit this by fork() or
* EXEC_BACKEND mechanism from the postmaster).
*/
Assert(walsndctl != NULL);
Assert(WalSndCtl != NULL);
Assert(MyWalSnd == NULL);
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment