summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2004-02-23 18:14:18 +0000
committerMichael Meskes <meskes@postgresql.org>2004-02-23 18:14:18 +0000
commitb4c8dcb294d8138bb66891d62e4f43196da01d52 (patch)
treeb845adc728aa0311138ffed4f77ee24d1210de38
parent6b7763d1c12bb72556536cfa18cd433e0103fce9 (diff)
Fixed incorrect output of indicator structs using the name of the data struct.
-rw-r--r--src/interfaces/ecpg/preproc/type.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/preproc/type.c b/src/interfaces/ecpg/preproc/type.c
index cb0eb275667..e7682298b89 100644
--- a/src/interfaces/ecpg/preproc/type.c
+++ b/src/interfaces/ecpg/preproc/type.c
@@ -263,7 +263,7 @@ ECPGdump_a_type(FILE *o, const char *name, struct ECPGtype * type,
else
{
ECPGdump_a_simple(o, ind_name, ind_type->u.element->type,
- ind_type->u.element->size, ind_type->size, NULL, prefix);
+ ind_type->u.element->size, ind_type->size, NULL, ind_prefix);
}
}
}