Skip to content

Commit bb8bda3

Browse files
committed
The definition for "ProcessConfigFile()" in guc-file.l does not match
the prototype in guc.h. The following patch corrects that. Billy G. Allie
1 parent 64b4a48 commit bb8bda3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/utils/misc/guc-file.l

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Copyright 2000 by PostgreSQL Global Development Group
66
*
7-
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc-file.l,v 1.1 2000/05/31 00:28:34 petere Exp $
7+
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc-file.l,v 1.2 2000/06/01 16:46:50 momjian Exp $
88
*/
99

1010
%{
@@ -124,7 +124,7 @@ free_name_value_list(struct name_value_pair * list)
124124
* values will be changed.
125125
*/
126126
void
127-
ProcessConfigFile(unsigned int context)
127+
ProcessConfigFile(GucContext context)
128128
{
129129
int token, parse_state;
130130
char *opt_name, *opt_value;

0 commit comments

Comments
 (0)