From c5d7c20726c7d0afafd164c06b6990540ab42778 Mon Sep 17 00:00:00 2001 From: Michael Meskes Date: Sun, 2 Mar 2008 10:57:21 +0000 Subject: [PATCH] Fixed bug that caused arrays of varchar to be output with incomplete name. --- src/interfaces/ecpg/preproc/type.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.39.5