diff options
Diffstat (limited to 'src/interfaces/ecpg/preproc/output.c')
| -rw-r--r-- | src/interfaces/ecpg/preproc/output.c | 4 |
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] != '"') |
