diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-04-22 04:16:46 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-04-22 04:16:46 +0000 |
commit | 5b4b3d563d0db16a00909a64090efa877593cffd (patch) | |
tree | 4bef5f89584c3ed96c1fcb47380a89db65154833 /contrib/array/array_iterator.c | |
parent | 2201d48ccdf79314c3123febf11f5a5d39b7a0b4 (diff) | |
download | postgresql-5b4b3d563d0db16a00909a64090efa877593cffd.tar.gz postgresql-5b4b3d563d0db16a00909a64090efa877593cffd.zip |
From: Jun Kuwamura <juk@rccm.co.jp>
This patch fix the Makefiles in contrib/{pginterface, spi,
miscutil, int8, ip_and_mac, sequence, soundex, string, userlock,
array, datetime} to install their modules in one directory(lib/modules/).
Diffstat (limited to 'contrib/array/array_iterator.c')
-rw-r--r-- | contrib/array/array_iterator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/array/array_iterator.c b/contrib/array/array_iterator.c index 7c301c8e236..b97530b124d 100644 --- a/contrib/array/array_iterator.c +++ b/contrib/array/array_iterator.c @@ -71,7 +71,7 @@ array_iterator(Oid elemtype, Oid proc, int and, ArrayType *array, Datum value) /* Lookup the function entry point */ proc_fn = (func_ptr) NULL; - fmgr_info(proc, &proc_fn, &pronargs); + fmgr_info(proc, &pronargs); /* (proc, &proc_fn, &pronargs); */ if ((proc_fn == NULL) || (pronargs != 2)) { elog(ERROR, "array_iterator: fmgr_info lookup failed for oid %d", proc); |