We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent71d641c commit48aa2dbCopy full SHA for 48aa2db
src/backend/nodes/print.c
@@ -8,7 +8,7 @@
8
*
9
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/nodes/print.c,v 1.50 2001/12/19 22:35:35 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/nodes/print.c,v 1.51 2001/12/20 02:39:26 momjian Exp $
12
13
* HISTORY
14
* AUTHORDATEMAJOR EVENT
@@ -88,7 +88,7 @@ pprint(void *obj)
88
if (indentLev>0)
89
{
90
indentLev--;
91
-indentDist=MIN(indentLev*INDENTSTOP,MAXINDENT);
+indentDist=Min(indentLev*INDENTSTOP,MAXINDENT);
92
}
93
j=indentDist-1;
94
/* j will equal indentDist on next loop iteration */
@@ -108,7 +108,7 @@ pprint(void *obj)
108
109
/* indent */
110
indentLev++;
111
112
for (j=0;j<indentDist;j++)
113
line[j]=' ';
114
line[j]=s[i];