Fix typo.

This commit is contained in:
Tom Lane 2002-12-17 15:45:01 +00:00
parent e932a724a4
commit 81ca457da8
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
* procedural language
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.75 2002/12/15 16:17:58 tgl Exp $
* $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.76 2002/12/17 15:45:01 tgl Exp $
*
* This software is copyrighted by Jan Wieck - Hamburg.
*
@ -1991,7 +1991,7 @@ exec_prepare_plan(PLpgSQL_execstate * estate,
*
* +1 is just to avoid palloc(0) error.
*/
argtypes = palloc(sizeof(Oid *) * (expr->nparams + 1));
argtypes = (Oid *) palloc(sizeof(Oid) * (expr->nparams + 1));
for (i = 0; i < expr->nparams; i++)
{