1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

- 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)
This commit is contained in:
lenz@kallisto.local
2003-09-24 08:35:02 +02:00
parent 0477ad9688
commit 5ce5a68b4e
6 changed files with 7 additions and 7 deletions

View File

@ -272,7 +272,7 @@ int my_instr_bin(CHARSET_INFO *cs __attribute__((unused)),
if (s_length <= b_length)
{
if (!s_length)
return 0; // Empty string is always found
return 0; /* Empty string is always found */
str= (const uchar*) big;
search= (const uchar*) small;