1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Fix compile warning.

This commit is contained in:
Peter Eisentraut
2002-09-04 22:51:23 +00:00
parent f9b7ba2871
commit be475f92cd
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
/****************************************************************************
* pending.c
* $Id: pending.c,v 1.2 2002/09/04 20:31:06 momjian Exp $
* $Id: pending.c,v 1.3 2002/09/04 22:49:22 petere Exp $
*
* This file contains a trigger for Postgresql-7.x to record changes to tables
* to a pending table for mirroring.
@ -67,7 +67,7 @@ recordchange(PG_FUNCTION_ARGS)
HeapTuple afterTuple = NULL;
HeapTuple retTuple = NULL;
char *tblname;
char op;
char op = 0;
if (fcinfo->context != NULL)
{