diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-03-07 16:18:08 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-03-07 16:18:08 +0000 |
commit | 296c806dd5a44bdbca6f78600a3cc68ecd89161b (patch) | |
tree | 71963f8a814b7d83a15e5e5ac6a9b1c92ce21704 /src | |
parent | 3dc1b2b71dc3a6b6713a228d39c17afc4cfef25c (diff) | |
download | postgresql-296c806dd5a44bdbca6f78600a3cc68ecd89161b.tar.gz postgresql-296c806dd5a44bdbca6f78600a3cc68ecd89161b.zip |
> Applied. Thanks.
One more :)) It's for improper function argumets for
PLTCL_UNKNOWN_SUPPORT code
I'm not an autoconf expert, but is it possible to enable unknown
support in pltcl with configure option ?
This support is really handy for real life usage of pl/tcl.
seva@sevasoft.kiev.ua
Diffstat (limited to 'src')
-rw-r--r-- | src/pl/tcl/pltcl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pl/tcl/pltcl.c b/src/pl/tcl/pltcl.c index f99be199b9f..a13ad19f984 100644 --- a/src/pl/tcl/pltcl.c +++ b/src/pl/tcl/pltcl.c @@ -31,7 +31,7 @@ * ENHANCEMENTS, OR MODIFICATIONS. * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/pl/tcl/pltcl.c,v 1.32 2001/02/16 03:26:40 tgl Exp $ + * $Header: /cvsroot/pgsql/src/pl/tcl/pltcl.c,v 1.33 2001/03/07 16:18:08 momjian Exp $ * **********************************************************************/ @@ -250,7 +250,7 @@ pltcl_init_interp(Tcl_Interp *interp) * table pltcl_modules (if it exists) **********************************************************************/ static void -pltcl_init_load_unknown(void) +pltcl_init_load_unknown(Tcl_Interp *interp) { int spi_rc; int tcl_rc; |