Skip to content

Commit ea9eca2

Browse files
author
Neil Conway
committed
Fix typo in comment.
1 parent 15a3c33 commit ea9eca2

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/backend/tcop/postgres.c

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.479 2006/01/18 06:49:27 neilc Exp $
11+
* $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.480 2006/02/17 03:29:02 neilc Exp $
1212
*
1313
* NOTES
1414
* this is the "main" module of the postgres backend and
@@ -98,8 +98,10 @@ int PostAuthDelay = 0;
9898
/* max_stack_depth converted to bytes for speed of checking */
9999
static int max_stack_depth_bytes = 2048 * 1024;
100100

101-
/* stack base pointer (initialized by PostgresMain) */
102-
/* Do not make static so PL/Java can modifiy it */
101+
/*
102+
* Stack base pointer -- initialized by PostgresMain. This is not static
103+
* so that PL/Java can modify it.
104+
*/
103105
char *stack_base_ptr = NULL;
104106

105107

0 commit comments

Comments
 (0)