aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/lib/connect.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/ecpg/lib/connect.c')
-rw-r--r--src/interfaces/ecpg/lib/connect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/lib/connect.c b/src/interfaces/ecpg/lib/connect.c
index 59a3f794851..aa14174ad40 100644
--- a/src/interfaces/ecpg/lib/connect.c
+++ b/src/interfaces/ecpg/lib/connect.c
@@ -118,7 +118,7 @@ ECPGnoticeProcessor_raise(int code, const char *message)
sqlca.sqlerrm.sqlerrmc[sizeof(sqlca.sqlerrm.sqlerrmc)-1]=0;
sqlca.sqlerrm.sqlerrml = strlen(sqlca.sqlerrm.sqlerrmc);
- // remove trailing newline
+ /* remove trailing newline */
if (sqlca.sqlerrm.sqlerrml
&& sqlca.sqlerrm.sqlerrmc[sqlca.sqlerrm.sqlerrml-1]=='\n')
{
@@ -201,7 +201,7 @@ ECPGnoticeProcessor(void *arg, const char *message)
return;
/* NOTICE: QUERY PLAN: */
- if (!strncmp(message,"QUERY PLAN:",11)) // do we really see these?
+ if (!strncmp(message,"QUERY PLAN:",11)) /* do we really see these? */
return;
/* NOTICE: DROP TABLE implicitly drops referential integrity trigger from table "*" */