fix compile problem.

This commit is contained in:
Bruce Momjian 1999-02-22 01:57:50 +00:00
parent 8c3e8a8a0e
commit e73d417105

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/print.c,v 1.24 1999/02/21 01:55:01 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/nodes/print.c,v 1.25 1999/02/22 01:57:50 momjian Exp $
* *
* HISTORY * HISTORY
* AUTHOR DATE MAJOR EVENT * AUTHOR DATE MAJOR EVENT
@ -223,7 +223,7 @@ print_pathkeys(List *pathkeys, List *rtable)
printf("("); printf("(");
foreach(i, pathkeys) foreach(i, pathkeys)
{ {
List pathkey = lfirst(i); List *pathkey = lfirst(i);
printf("("); printf("(");
foreach(k, pathkey) foreach(k, pathkey)