Commit e73d4171 authored by Bruce Momjian's avatar Bruce Momjian

fix compile problem.

parent 8c3e8a8a
......@@ -7,7 +7,7 @@
*
*
* 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
* AUTHOR DATE MAJOR EVENT
......@@ -223,7 +223,7 @@ print_pathkeys(List *pathkeys, List *rtable)
printf("(");
foreach(i, pathkeys)
{
List pathkey = lfirst(i);
List *pathkey = lfirst(i);
printf("(");
foreach(k, pathkey)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment