summaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/preproc/output.c
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2001-08-19 09:21:45 +0000
committerMichael Meskes <meskes@postgresql.org>2001-08-19 09:21:45 +0000
commitdb07a3f47febb1e4e268169c7aff43896b31e576 (patch)
tree081b2661cc43040b8247ead75229cf002aa9c769 /src/interfaces/ecpg/preproc/output.c
parent0c439e5ef6efbb13313718493d00be7a3f66acd3 (diff)
- Synced preproc.y with gram.y.
- Include some patches by Christof Petig <christof.petig@wtal.de>.
Diffstat (limited to 'src/interfaces/ecpg/preproc/output.c')
-rw-r--r--src/interfaces/ecpg/preproc/output.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/preproc/output.c b/src/interfaces/ecpg/preproc/output.c
index cfd703d0db5..3146901171e 100644
--- a/src/interfaces/ecpg/preproc/output.c
+++ b/src/interfaces/ecpg/preproc/output.c
@@ -111,7 +111,7 @@ output_statement(char *stmt, int mode, char *descriptor, char *con)
if (descriptor == NULL)
fprintf(yyout, "{ ECPGdo(__LINE__, %s, \"", con ? con : "NULL");
else
- fprintf(yyout, "{ ECPGdo_descriptor(__LINE__, %s, \"%s\", \"",
+ fprintf(yyout, "{ ECPGdo_descriptor(__LINE__, %s, %s, \"",
con ? con : "NULL", descriptor);
/* do this char by char as we have to filter '\"' */