diff options
author | unknown <lenz@kallisto.local> | 2003-09-24 08:35:02 +0200 |
---|---|---|
committer | unknown <lenz@kallisto.local> | 2003-09-24 08:35:02 +0200 |
commit | 07001f78eca148d143ebf7fea66f4296a19a6d51 (patch) | |
tree | 7a953ea10b82122bdf37cf7efc4cfd3fd9a20b17 /tests | |
parent | 51f7838ab49f25f7bcd0383cc37bd00fb3d8a010 (diff) | |
download | mariadb-git-07001f78eca148d143ebf7fea66f4296a19a6d51.tar.gz |
- Code cleanup: replaced C++-style comments with the proper syntax for
.c files (the IBM Visual Age C compiler aborts with a syntax error
on these)
libmysql/dll.c:
- replaced C++-style comment with the proper syntax for .c files
(the IBM Visual Age C compiler aborts with a syntax error on these)
libmysql/libmysql.c:
- replaced C++-style comment with the proper syntax for .c files
(the IBM Visual Age C compiler aborts with a syntax error on these)
mysys/my_getopt.c:
- replaced C++-style comment with the proper syntax for .c files
(the IBM Visual Age C compiler aborts with a syntax error on these)
sql/net_serv.cc:
- replaced C++-style comment with the proper syntax for .c files
(the IBM Visual Age C compiler aborts with a syntax error on these)
strings/ctype-bin.c:
- replaced C++-style comment with the proper syntax for .c files
(the IBM Visual Age C compiler aborts with a syntax error on these)
tests/client_test.c:
- replaced C++-style comment with the proper syntax for .c files
(the IBM Visual Age C compiler aborts with a syntax error on these)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/client_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/client_test.c b/tests/client_test.c index ac83ceda39f..388d5743cfb 100644 --- a/tests/client_test.c +++ b/tests/client_test.c @@ -6841,7 +6841,7 @@ static void test_logs() fprintf(stdout, "\n name : %s(%ld)", data, length); myassert(id == 9876); - myassert(length == 19);//Due to VARCHAR(20) + myassert(length == 19); /* Due to VARCHAR(20) */ myassert(strcmp(data,"MySQL - Open Source")==0); rc = mysql_fetch(stmt); |