diff options
author | Michael Meskes <meskes@postgresql.org> | 2004-02-23 18:14:30 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2004-02-23 18:14:30 +0000 |
commit | fd7d98a271e65bc982e9af0f76b765ef50baa247 (patch) | |
tree | aa7479ea1d7104d3d87835b9d62b56d9255fef3e | |
parent | 41d9c5e06754d2bf99937a118474f35a906ad370 (diff) | |
download | postgresql-fd7d98a271e65bc982e9af0f76b765ef50baa247.tar.gz postgresql-fd7d98a271e65bc982e9af0f76b765ef50baa247.zip |
Fixed incorrect output of indicator structs using the name of the data struct.
-rw-r--r-- | src/interfaces/ecpg/preproc/type.c | 2 |
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); } } } |