diff options
author | unknown <lenz@mysql.com> | 2003-03-11 15:37:31 +0100 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2003-03-11 15:37:31 +0100 |
commit | 11e0756966ba7fe22bddb175682fdaaea6a5d38a (patch) | |
tree | db25ffad48cc134b5ac61ffdc2afe64ea001474d /sql/net_serv.cc | |
parent | 312f0366bc392e072683a7612c465524cfbde524 (diff) | |
download | mariadb-git-11e0756966ba7fe22bddb175682fdaaea6a5d38a.tar.gz |
- fixed C++-style comments in .c files to make IBM compiler happy
(it barfs on these with a syntax error)
sql/net_serv.cc:
- fixed C++-style comment (this file is copied as libmysql_r/net.c)
strings/ctype-tis620.c:
- fixed many C++-style comments
Diffstat (limited to 'sql/net_serv.cc')
-rw-r--r-- | sql/net_serv.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/net_serv.cc b/sql/net_serv.cc index c6a0b8c5b3e..c8c774d365f 100644 --- a/sql/net_serv.cc +++ b/sql/net_serv.cc @@ -181,7 +181,7 @@ static my_bool net_realloc(NET *net, ulong length) void net_clear(NET *net) { #ifndef EXTRA_DEBUG - int count; // One may get 'unused' warning + int count; /* One may get 'unused' warning */ bool is_blocking=vio_is_blocking(net->vio); if (is_blocking) vio_blocking(net->vio, FALSE); |