From: Michael Meskes Date: Sun, 2 Mar 2008 10:57:21 +0000 (+0000) Subject: Fixed bug that caused arrays of varchar to be output with incomplete name. X-Git-Url: http://waps.l3s.uni-hannover.de/gitweb/?a=commitdiff_plain;h=c5d7c20726c7d0afafd164c06b6990540ab42778;p=users%2Fbernd%2Fpostgres.git Fixed bug that caused arrays of varchar to be output with incomplete name. --- diff --git a/src/interfaces/ecpg/preproc/type.c b/src/interfaces/ecpg/preproc/type.c index 30dcf6e6d2..ffa39f0975 100644 --- a/src/interfaces/ecpg/preproc/type.c +++ b/src/interfaces/ecpg/preproc/type.c @@ -259,7 +259,7 @@ ECPGdump_a_type(FILE *o, const char *name, struct ECPGtype * type, ECPGdump_a_simple(o, name, type->u.element->type, - type->u.element->size, type->size, NULL, prefix, type->lineno); + type->u.element->size, type->size, NULL, prefix, type->u.element->lineno); if (ind_type != NULL) {