diff options
author | knielsen@mysql.com <> | 2006-01-02 02:45:26 +0100 |
---|---|---|
committer | knielsen@mysql.com <> | 2006-01-02 02:45:26 +0100 |
commit | 62d6f430ee133da9620f30a141e26713b07bf448 (patch) | |
tree | 089b030246b706a32aa5485eb88153a72ddeca22 /storage/innobase | |
parent | 9cfa1def8e37548f1e56dbdb2c6301ccf264a5e2 (diff) | |
download | mariadb-git-62d6f430ee133da9620f30a141e26713b07bf448.tar.gz |
Do not use C++ style comments (//) in C source (breaks compilation on aix52).
Diffstat (limited to 'storage/innobase')
-rw-r--r-- | storage/innobase/row/row0mysql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innobase/row/row0mysql.c b/storage/innobase/row/row0mysql.c index c733bf5c8f2..86d9ecf9c54 100644 --- a/storage/innobase/row/row0mysql.c +++ b/storage/innobase/row/row0mysql.c @@ -3484,7 +3484,7 @@ row_is_mysql_tmp_table_name( const char* name) /* in: table name in the form 'database/tablename' */ { - //return(strstr(name, "/#sql") != NULL); + /* return(strstr(name, "/#sql") != NULL); */ return(strstr(name, "/@0023sql") != NULL); } |