summaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/preproc/output.c
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2003-05-30 13:22:02 +0000
committerMichael Meskes <meskes@postgresql.org>2003-05-30 13:22:02 +0000
commit776d5309240bdadc5f905cacba5f237e532c6139 (patch)
treec1567bb059c58296892817c779a9401694947826 /src/interfaces/ecpg/preproc/output.c
parenta0fed291dcf39cd2191dfb49e1b30262e050de5f (diff)
downloadpostgresql-776d5309240bdadc5f905cacba5f237e532c6139.tar.gz
Create a real prototype function for describe.
Diffstat (limited to 'src/interfaces/ecpg/preproc/output.c')
-rw-r--r--src/interfaces/ecpg/preproc/output.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/preproc/output.c b/src/interfaces/ecpg/preproc/output.c
index 7e626b1971..57509ea809 100644
--- a/src/interfaces/ecpg/preproc/output.c
+++ b/src/interfaces/ecpg/preproc/output.c
@@ -15,7 +15,7 @@ output_simple_statement(char *cmd)
int i,
j = strlen(cmd);;
- /* do this char by char as we have to filter '\"' */
+ /* output this char by char as we have to filter '\"' */
for (i = 0; i < j; i++)
{
if (cmd[i] != '"')
@@ -111,7 +111,7 @@ output_statement(char *stmt, int mode, char *con)
fprintf(yyout, "{ ECPGdo(__LINE__, %s, \"", con ? con : "NULL");
- /* do this char by char as we have to filter '\"' */
+ /* output this char by char as we have to filter '\"' */
for (i = 0; i < j; i++)
{
if (stmt[i] != '"')