File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/nodes/print.c,v 1.50 2001/12/19 22:35:35 tgl Exp $
11
+ * $Header: /cvsroot/pgsql/src/backend/nodes/print.c,v 1.51 2001/12/20 02:39:26 momjian Exp $
12
12
*
13
13
* HISTORY
14
14
* AUTHOR DATE MAJOR EVENT
@@ -88,7 +88,7 @@ pprint(void *obj)
88
88
if (indentLev > 0 )
89
89
{
90
90
indentLev -- ;
91
- indentDist = MIN (indentLev * INDENTSTOP , MAXINDENT );
91
+ indentDist = Min (indentLev * INDENTSTOP , MAXINDENT );
92
92
}
93
93
j = indentDist - 1 ;
94
94
/* j will equal indentDist on next loop iteration */
@@ -108,7 +108,7 @@ pprint(void *obj)
108
108
}
109
109
/* indent */
110
110
indentLev ++ ;
111
- indentDist = MIN (indentLev * INDENTSTOP , MAXINDENT );
111
+ indentDist = Min (indentLev * INDENTSTOP , MAXINDENT );
112
112
for (j = 0 ; j < indentDist ; j ++ )
113
113
line [j ] = ' ' ;
114
114
line [j ] = s [i ];
You can’t perform that action at this time.
0 commit comments