Skip to content

Commit fa1c31e

Browse files
committed
Change // to /*.
1 parent ebdfac3 commit fa1c31e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/interfaces/ecpg/lib/connect.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ ECPGnoticeProcessor_raise(int code, const char *message)
118118
sqlca.sqlerrm.sqlerrmc[sizeof(sqlca.sqlerrm.sqlerrmc)-1]=0;
119119
sqlca.sqlerrm.sqlerrml = strlen(sqlca.sqlerrm.sqlerrmc);
120120

121-
// remove trailing newline
121+
/* remove trailing newline */
122122
if (sqlca.sqlerrm.sqlerrml
123123
&& sqlca.sqlerrm.sqlerrmc[sqlca.sqlerrm.sqlerrml-1]=='\n')
124124
{
@@ -201,7 +201,7 @@ ECPGnoticeProcessor(void *arg, const char *message)
201201
return;
202202

203203
/* NOTICE: QUERY PLAN: */
204-
if (!strncmp(message,"QUERY PLAN:",11)) // do we really see these?
204+
if (!strncmp(message,"QUERY PLAN:",11)) /* do we really see these? */
205205
return;
206206

207207
/* NOTICE: DROP TABLE implicitly drops referential integrity trigger from table "*" */

0 commit comments

Comments
 (0)