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

Use proper types so it compiles on DEC C89. Thanks Erik Bertelson.

This commit is contained in:
Bryan Henderson
1997-01-08 08:39:10 +00:00
parent 5e98c40129
commit 3c4b21493d
3 changed files with 10 additions and 11 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/dest.c,v 1.3 1996/11/10 03:02:42 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/dest.c,v 1.4 1997/01/08 08:36:31 bryanh Exp $
*
*-------------------------------------------------------------------------
*/
@ -45,12 +45,12 @@
* output functions
* ----------------
*/
void
donothing(List *tuple, List *attrdesc)
static void
donothing(HeapTuple tuple, TupleDesc attrdesc)
{
}
void (*DestToFunction(CommandDest dest))()
void (*DestToFunction(CommandDest dest))(HeapTuple, TupleDesc)
{
switch (dest) {
case RemoteInternal: