diff options
author | lenz@kallisto.local <> | 2003-09-24 08:35:02 +0200 |
---|---|---|
committer | lenz@kallisto.local <> | 2003-09-24 08:35:02 +0200 |
commit | 5ce5a68b4e520bad314e76645cc2718a5e5af92b (patch) | |
tree | 7a953ea10b82122bdf37cf7efc4cfd3fd9a20b17 /strings | |
parent | 0477ad9688de585468076bd9935dd5c616dbc33e (diff) | |
download | mariadb-git-5ce5a68b4e520bad314e76645cc2718a5e5af92b.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)
Diffstat (limited to 'strings')
-rw-r--r-- | strings/ctype-bin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/ctype-bin.c b/strings/ctype-bin.c index 3f74f514c48..75070203239 100644 --- a/strings/ctype-bin.c +++ b/strings/ctype-bin.c @@ -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; |