diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-02-05 03:40:10 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-02-05 03:40:10 +0000 |
commit | 48ad446c040927e175248fa2cb42c3208060d3ad (patch) | |
tree | a1de0da80109b99c40fb3cfd6e8863491bcbd167 | |
parent | 03febc634bbdad1b1de875e0cf1696d09f4aba5d (diff) | |
download | postgresql-48ad446c040927e175248fa2cb42c3208060d3ad.tar.gz postgresql-48ad446c040927e175248fa2cb42c3208060d3ad.zip |
Fix up this so that it also doesn't use a caller variable...
-rw-r--r-- | src/include/parser/parse_func.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/parser/parse_func.h b/src/include/parser/parse_func.h index 0a360df86ae..119d242f407 100644 --- a/src/include/parser/parse_func.h +++ b/src/include/parser/parse_func.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_func.h,v 1.5 1998/01/20 05:04:51 momjian Exp $ + * $Id: parse_func.h,v 1.6 1998/02/05 03:40:10 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -47,7 +47,7 @@ extern Node *ParseNestedFuncOrColumn(ParseState *pstate, Attr *attr, extern Node *ParseFuncOrColumn(ParseState *pstate, char *funcname, List *fargs, int *curr_resno, int precedence); -extern void func_error(char *caller, char *funcname, int nargs, Oid *argtypes); +extern void func_error(char *funcname, int nargs, Oid *argtypes); #endif /* PARSE_FUNC_H */ |